荣鑫后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
1.4 KiB

5 years ago
  1. package com.gaotao.modules.toolman.entity;
  2. import java.util.Date;
  3. import lombok.Data;
  4. /**
  5. * @Auther: Zuowenwen
  6. * @Date:2021/07/08 9:39
  7. * @Description: //TODO 描述
  8. */
  9. /**
  10. * 工具交易主表
  11. */
  12. @Data
  13. public class ToolTransHeader {
  14. /**
  15. * 主键ID
  16. */
  17. private Integer id;
  18. /**
  19. * 用户id
  20. */
  21. private String userId;
  22. /**
  23. * 出入库单号
  24. */
  25. private String transNo;
  26. /**
  27. * 出入库日期
  28. */
  29. private Date transDate;
  30. /**
  31. * 出入库类型全称
  32. */
  33. private String transType;
  34. /**
  35. * 出入库类型简称
  36. */
  37. private String transTypeDb;
  38. /**
  39. * 经手人
  40. */
  41. private String receiver;
  42. /**
  43. * 备注
  44. */
  45. private String remark;
  46. /**
  47. * 出入库单状态 Y入库 N出库
  48. */
  49. private String status;
  50. /**
  51. * 关联单单号1
  52. */
  53. private String ordeRef1;
  54. /**
  55. * 关联单单号2
  56. */
  57. private String ordeRef2;
  58. /**
  59. * 关联单单号3
  60. */
  61. private String ordeRef3;
  62. /**
  63. * 创建日期
  64. */
  65. private Date createdDate;
  66. /**
  67. * 最近更新人
  68. */
  69. private String updateBy;
  70. /**
  71. * 最近更新时间
  72. */
  73. private Date updatedDate;
  74. /**
  75. * 删除状态
  76. */
  77. private String delflag;
  78. /**
  79. * 版本号
  80. */
  81. private Integer version;
  82. private String supplierId;
  83. }