荣鑫后端
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.

96 lines
1.3 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/07 17:08
  7. * @Description: //TODO 描述
  8. */
  9. @Data
  10. public class ToolHeader {
  11. /**
  12. * 工具编号
  13. */
  14. private String toolid;
  15. /**
  16. * 工厂编号
  17. */
  18. private String site;
  19. /**
  20. * 工具名称
  21. */
  22. private String tooldescription;
  23. /**
  24. * 规格型号
  25. */
  26. private String spec;
  27. /**
  28. * 工具分类
  29. */
  30. private String familyid;
  31. /**
  32. * 是否在用Y/N
  33. */
  34. private String active;
  35. /**
  36. * 备注
  37. */
  38. private String remark;
  39. /**
  40. * 标准成本
  41. */
  42. private Double standardcost;
  43. /**
  44. * 属性模板
  45. */
  46. private String codeno;
  47. /**
  48. * 创建日期
  49. */
  50. private Date createdate;
  51. /**
  52. * 创建人
  53. */
  54. private String createdby;
  55. /**
  56. * 计量单位
  57. */
  58. private String umid;
  59. /**
  60. * 默认仓库
  61. */
  62. private String defaultwarehouseid;
  63. /**
  64. * 最近更改人
  65. */
  66. private String lastupdateby;
  67. /**
  68. * 默认库位
  69. */
  70. private String defaultlocationid;
  71. /**
  72. * 是否创建物料
  73. */
  74. private String partcreatedflag;
  75. /**
  76. * 对应物料编码
  77. */
  78. private String partno;
  79. }