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.

131 lines
2.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. package com.spring.modules.sampleManagement.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. public class PlmBmBom {
  7. /**
  8. * 工厂编码
  9. */
  10. private String site;
  11. /**
  12. * 技术参数卡编码
  13. */
  14. private String codeNo;
  15. /**
  16. * 800料号
  17. */
  18. private String erpPartNo;
  19. /**
  20. * 数量
  21. */
  22. private BigDecimal quantity;
  23. /**
  24. * 备注
  25. */
  26. private String remark;
  27. /**
  28. *
  29. */
  30. private String createBy;
  31. /**
  32. *
  33. */
  34. @DateTimeFormat(pattern = "yyyy-MM-dd")
  35. @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
  36. private Date createDate;
  37. /**
  38. *
  39. */
  40. private String updateBy;
  41. /**
  42. *
  43. */
  44. @DateTimeFormat(pattern = "yyyy-MM-dd")
  45. @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
  46. private Date updateDate;
  47. public String getSite() {
  48. return site;
  49. }
  50. public void setSite(String site) {
  51. this.site = site;
  52. }
  53. public String getCodeNo() {
  54. return codeNo;
  55. }
  56. public void setCodeNo(String codeNo) {
  57. this.codeNo = codeNo;
  58. }
  59. public String getErpPartNo() {
  60. return erpPartNo;
  61. }
  62. public void setErpPartNo(String erpPartNo) {
  63. this.erpPartNo = erpPartNo;
  64. }
  65. public BigDecimal getQuantity() {
  66. return quantity;
  67. }
  68. public void setQuantity(BigDecimal quantity) {
  69. this.quantity = quantity;
  70. }
  71. public String getRemark() {
  72. return remark;
  73. }
  74. public void setRemark(String remark) {
  75. this.remark = remark;
  76. }
  77. public String getCreateBy() {
  78. return createBy;
  79. }
  80. public void setCreateBy(String createBy) {
  81. this.createBy = createBy;
  82. }
  83. public Date getCreateDate() {
  84. return createDate;
  85. }
  86. public void setCreateDate(Date createDate) {
  87. this.createDate = createDate;
  88. }
  89. public String getUpdateBy() {
  90. return updateBy;
  91. }
  92. public void setUpdateBy(String updateBy) {
  93. this.updateBy = updateBy;
  94. }
  95. public Date getUpdateDate() {
  96. return updateDate;
  97. }
  98. public void setUpdateDate(Date updateDate) {
  99. this.updateDate = updateDate;
  100. }
  101. }