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
2.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. package com.spring.modules.project.data;
  2. import org.apache.ibatis.type.Alias;
  3. @Alias("TechnicalCustomerInfoData")
  4. public class TechnicalCustomerInfoData {
  5. private Integer id;
  6. private String customerId;
  7. private String customerName;
  8. private String customerDesc;
  9. private String customerRemark;
  10. private String remark;
  11. private String finalCustomerId;
  12. private String pictureAddess;
  13. private String customerPictureChangeRemark;
  14. private String productionFileComments;
  15. public Integer getId() {
  16. return id;
  17. }
  18. public void setId(Integer id) {
  19. this.id = id;
  20. }
  21. public String getCustomerId() {
  22. return customerId;
  23. }
  24. public void setCustomerId(String customerId) {
  25. this.customerId = customerId;
  26. }
  27. public String getCustomerName() {
  28. return customerName;
  29. }
  30. public void setCustomerName(String customerName) {
  31. this.customerName = customerName;
  32. }
  33. public String getCustomerDesc() {
  34. return customerDesc;
  35. }
  36. public void setCustomerDesc(String customerDesc) {
  37. this.customerDesc = customerDesc;
  38. }
  39. public String getCustomerRemark() {
  40. return customerRemark;
  41. }
  42. public void setCustomerRemark(String customerRemark) {
  43. this.customerRemark = customerRemark;
  44. }
  45. public String getRemark() {
  46. return remark;
  47. }
  48. public void setRemark(String remark) {
  49. this.remark = remark;
  50. }
  51. public String getFinalCustomerId() {
  52. return finalCustomerId;
  53. }
  54. public void setFinalCustomerId(String finalCustomerId) {
  55. this.finalCustomerId = finalCustomerId;
  56. }
  57. public String getPictureAddess() {
  58. return pictureAddess;
  59. }
  60. public void setPictureAddess(String pictureAddess) {
  61. this.pictureAddess = pictureAddess;
  62. }
  63. public String getCustomerPictureChangeRemark() {
  64. return customerPictureChangeRemark;
  65. }
  66. public void setCustomerPictureChangeRemark(String customerPictureChangeRemark) {
  67. this.customerPictureChangeRemark = customerPictureChangeRemark;
  68. }
  69. public String getProductionFileComments() {
  70. return productionFileComments;
  71. }
  72. public void setProductionFileComments(String productionFileComments) {
  73. this.productionFileComments = productionFileComments;
  74. }
  75. }