using Castle.ActiveRecord; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BizCom { [ActiveRecord("Ce_ErpTradeAfterSaleLog")] public class CeErpTradeAfterSaleLog : ComBase { /// /// /// [PrimaryKey(PrimaryKeyType.Native)] public int ID { get; set; } private int _responsibleId; [Property] public int ResponsibleId { get { return _responsibleId; } set { _responsibleId = value; } } private string _tid = ""; [Property] public string tid { get { return _tid; } set { _tid = value; } } //内容 private string _con = ""; [Property] public string Con { get { return _con; } set { _con = value; } } //用户 private int _userId = 0; [Property] public int UserId { get { return _userId; } set { _userId = value; } } /// ///创建时间 /// [Property] public DateTime? createdTime { get; set; } private int _type = 0; /// ///类型0正常1不认可 /// [Property] public int Type { get { return _type; } set { _type = value; } } private string _afterSaleBackReason = ""; /// ///售后打回的原因 /// [Property] public string AfterSaleBackReason { get { return _afterSaleBackReason; } set { _afterSaleBackReason = value; } } private string _afterSaleBackImg = ""; /// ///售后处理退回图片 /// [Property] public string AfterSaleBackImg { get { return _afterSaleBackImg; } set { _afterSaleBackImg = value; } } } }