FoldTheValues.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package com.steerinfo.ems.foldthevalues.model;
  2. import com.steerinfo.framework.model.IBasePO;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. @ApiModel(value="折标系数值表")
  6. public class FoldTheValues implements IBasePO<String> {
  7. /**
  8. * ID(ID,VARCHAR,100)
  9. */
  10. @ApiModelProperty(value="ID",required=true)
  11. private String id;
  12. @ApiModelProperty(value="物料来源",required=false)
  13. private String materialsource;
  14. /**
  15. * 版本(CLOCK,VARCHAR,30)
  16. */
  17. @ApiModelProperty(value="版本",required=false)
  18. private String clock;
  19. /**
  20. * 折标值(CODE,VARCHAR,60)
  21. */
  22. @ApiModelProperty(value="折标值",required=false)
  23. private String code;
  24. /**
  25. * 描述(DESCRIPTION,VARCHAR,500)
  26. */
  27. @ApiModelProperty(value="描述",required=false)
  28. private String description;
  29. /**
  30. * 是否可用(ISAVAILABLE,VARCHAR,10)
  31. */
  32. @ApiModelProperty(value="是否可用",required=false)
  33. private String isavailable;
  34. /**
  35. * 修改者(REVISOR,VARCHAR,30)
  36. */
  37. @ApiModelProperty(value="修改者",required=false)
  38. private String revisor;
  39. /**
  40. * 修改时间(REVISETIME,VARCHAR,30)
  41. */
  42. @ApiModelProperty(value="修改时间",required=false)
  43. private String revisetime;
  44. /**
  45. * 单位(UNITID,VARCHAR,20)
  46. */
  47. @ApiModelProperty(value="单位",required=false)
  48. private String unitid;
  49. /**
  50. * 物料编码
  51. */
  52. @ApiModelProperty(value="物料编码",required=false)
  53. private String materialno;
  54. public String getMaterialno() {
  55. return materialno;
  56. }
  57. public void setMaterialno(String materialno) {
  58. this.materialno = materialno;
  59. }
  60. /**
  61. * 备注(BZ,VARCHAR,255)
  62. */
  63. @ApiModelProperty(value="备注",required=false)
  64. private String bz;
  65. private String estimatedvalue;
  66. private String timegranid;
  67. private String startTime;
  68. private String endTime;
  69. public String getStartTime() {
  70. return startTime;
  71. }
  72. public void setStartTime(String startTime) {
  73. this.startTime = startTime;
  74. }
  75. public String getEndTime() {
  76. return endTime;
  77. }
  78. public void setEndTime(String endTime) {
  79. this.endTime = endTime;
  80. }
  81. public String getEstimatedvalue() {
  82. return estimatedvalue;
  83. }
  84. public void setEstimatedvalue(String estimatedvalue) {
  85. this.estimatedvalue = estimatedvalue;
  86. }
  87. public String getTimegranid() {
  88. return timegranid;
  89. }
  90. public void setTimegranid(String timegranid) {
  91. this.timegranid = timegranid;
  92. }
  93. private static final long serialVersionUID = 1L;
  94. public String getId() {
  95. return id;
  96. }
  97. public void setId(String id) {
  98. this.id = id == null ? null : id.trim();
  99. }
  100. public String getMaterialsource() {
  101. return materialsource;
  102. }
  103. public void setMaterialsource(String materialsource) {
  104. this.materialsource = materialsource == null ? null : materialsource.trim();
  105. }
  106. public String getClock() {
  107. return clock;
  108. }
  109. public void setClock(String clock) {
  110. this.clock = clock == null ? null : clock.trim();
  111. }
  112. public String getCode() {
  113. return code;
  114. }
  115. public void setCode(String code) {
  116. this.code = code == null ? null : code.trim();
  117. }
  118. public String getDescription() {
  119. return description;
  120. }
  121. public void setDescription(String description) {
  122. this.description = description == null ? null : description.trim();
  123. }
  124. public String getIsavailable() {
  125. return isavailable;
  126. }
  127. public void setIsavailable(String isavailable) {
  128. this.isavailable = isavailable == null ? null : isavailable.trim();
  129. }
  130. public String getRevisor() {
  131. return revisor;
  132. }
  133. public void setRevisor(String revisor) {
  134. this.revisor = revisor == null ? null : revisor.trim();
  135. }
  136. public String getRevisetime() {
  137. return revisetime;
  138. }
  139. public void setRevisetime(String revisetime) {
  140. this.revisetime = revisetime == null ? null : revisetime.trim();
  141. }
  142. public String getUnitid() {
  143. return unitid;
  144. }
  145. public void setUnitid(String unitid) {
  146. this.unitid = unitid == null ? null : unitid.trim();
  147. }
  148. public String getBz() {
  149. return bz;
  150. }
  151. public void setBz(String bz) {
  152. this.bz = bz == null ? null : bz.trim();
  153. }
  154. @Override
  155. public String toString() {
  156. StringBuilder sb = new StringBuilder();
  157. sb.append(getClass().getSimpleName());
  158. sb.append(" [");
  159. sb.append("Hash = ").append(hashCode());
  160. sb.append(", id=").append(id);
  161. sb.append(", materialsource=").append(materialsource);
  162. sb.append(", clock=").append(clock);
  163. sb.append(", code=").append(code);
  164. sb.append(", description=").append(description);
  165. sb.append(", isavailable=").append(isavailable);
  166. sb.append(", revisor=").append(revisor);
  167. sb.append(", revisetime=").append(revisetime);
  168. sb.append(", unitid=").append(unitid);
  169. sb.append(", bz=").append(bz);
  170. sb.append(", serialVersionUID=").append(serialVersionUID);
  171. sb.append("]");
  172. return sb.toString();
  173. }
  174. }