IM12345_Api demo - 代码源于 商丘市12345项目

T_Sys_WorkFile.cs 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// 附件工单关联表
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_WorkFile
  9. {
  10. public T_Sys_WorkFile()
  11. { }
  12. #region Model
  13. private string _f_workorderid;
  14. private int _f_fileid;
  15. private int? _f_type;
  16. private int? _f_id;
  17. /// <summary>
  18. /// 登记流水号
  19. /// </summary>
  20. public string F_WorkOrderId
  21. {
  22. set { _f_workorderid = value; }
  23. get { return _f_workorderid; }
  24. }
  25. /// <summary>
  26. /// 附件id
  27. /// </summary>
  28. public int F_FileId
  29. {
  30. set { _f_fileid = value; }
  31. get { return _f_fileid; }
  32. }
  33. /// <summary>
  34. /// 附件所属(0投诉附件、1反馈附件)
  35. /// </summary>
  36. public int? F_Type
  37. {
  38. set { _f_type = value; }
  39. get { return _f_type; }
  40. }
  41. /// <summary>
  42. /// 反馈id
  43. /// </summary>
  44. public int? F_Id
  45. {
  46. set { _f_id = value; }
  47. get { return _f_id; }
  48. }
  49. #endregion Model
  50. }
  51. }