CeErpTradeAfterSaleLog.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using Castle.ActiveRecord;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BizCom
  8. {
  9. [ActiveRecord("Ce_ErpTradeAfterSaleLog")]
  10. public class CeErpTradeAfterSaleLog : ComBase<CeErpTradeAfterSaleLog>
  11. {
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. [PrimaryKey(PrimaryKeyType.Native)]
  16. public int ID { get; set; }
  17. private int _responsibleId;
  18. [Property]
  19. public int ResponsibleId
  20. {
  21. get { return _responsibleId; }
  22. set { _responsibleId = value; }
  23. }
  24. private string _tid = "";
  25. [Property]
  26. public string tid
  27. {
  28. get { return _tid; }
  29. set { _tid = value; }
  30. }
  31. //内容
  32. private string _con = "";
  33. [Property]
  34. public string Con
  35. {
  36. get { return _con; }
  37. set { _con = value; }
  38. }
  39. //用户
  40. private int _userId = 0;
  41. [Property]
  42. public int UserId
  43. {
  44. get { return _userId; }
  45. set { _userId = value; }
  46. }
  47. /// <summary>
  48. ///创建时间
  49. /// </summary>
  50. [Property]
  51. public DateTime? createdTime { get; set; }
  52. private int _type = 0;
  53. /// <summary>
  54. ///类型0正常1不认可
  55. /// </summary>
  56. [Property]
  57. public int Type
  58. {
  59. get { return _type; }
  60. set { _type = value; }
  61. }
  62. private string _afterSaleBackReason = "";
  63. /// <summary>
  64. ///售后打回的原因
  65. /// </summary>
  66. [Property]
  67. public string AfterSaleBackReason
  68. {
  69. get { return _afterSaleBackReason; }
  70. set { _afterSaleBackReason = value; }
  71. }
  72. private string _afterSaleBackImg = "";
  73. /// <summary>
  74. ///售后处理退回图片
  75. /// </summary>
  76. [Property]
  77. public string AfterSaleBackImg
  78. {
  79. get { return _afterSaleBackImg; }
  80. set { _afterSaleBackImg = value; }
  81. }
  82. }
  83. }