| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- 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<CeErpTradeAfterSaleLog>
- {
- /// <summary>
- ///
- /// </summary>
- [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; }
- }
- /// <summary>
- ///创建时间
- /// </summary>
- [Property]
- public DateTime? createdTime { get; set; }
- private int _type = 0;
- /// <summary>
- ///类型0正常1不认可
- /// </summary>
- [Property]
- public int Type
- {
- get { return _type; }
- set { _type = value; }
- }
- private string _afterSaleBackReason = "";
- /// <summary>
- ///售后打回的原因
- /// </summary>
- [Property]
- public string AfterSaleBackReason
- {
- get { return _afterSaleBackReason; }
- set { _afterSaleBackReason = value; }
- }
- private string _afterSaleBackImg = "";
- /// <summary>
- ///售后处理退回图片
- /// </summary>
- [Property]
- public string AfterSaleBackImg
- {
- get { return _afterSaleBackImg; }
- set { _afterSaleBackImg = value; }
- }
- }
- }
|