TCanteenQualification.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. package com.ruoyi.supplier.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import com.ruoyi.common.annotation.Excel;
  7. import com.ruoyi.common.core.domain.BaseEntity;
  8. /**
  9. * 供应商资质对象 t_canteen_qualification
  10. *
  11. * @author ruoyi
  12. * @date 2025-04-22
  13. */
  14. public class TCanteenQualification extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 资质id */
  18. private Long qualificationId;
  19. /** 供应商id */
  20. @Excel(name = "供应商id")
  21. private Long supplierId;
  22. /** 资质附件地址 */
  23. @Excel(name = "资质附件地址")
  24. private String qualificationUrl;
  25. /** 注册日期 */
  26. @JsonFormat(pattern = "yyyy-MM-dd")
  27. @Excel(name = "注册日期", width = 30, dateFormat = "yyyy-MM-dd")
  28. private Date startDate;
  29. /** 截止日期 */
  30. @JsonFormat(pattern = "yyyy-MM-dd")
  31. @Excel(name = "截止日期", width = 30, dateFormat = "yyyy-MM-dd")
  32. private Date endDate;
  33. /** 证件类型 */
  34. @Excel(name = "证件类型")
  35. private String documentType;
  36. /** 状态 */
  37. @Excel(name = "状态")
  38. private Long status;
  39. /** 状态 0 :正常 ;2:删除 */
  40. private Integer delFlag;
  41. /** 创建人 */
  42. @Excel(name = "创建人")
  43. private Long createrCode;
  44. /** 创建时间 */
  45. @JsonFormat(pattern = "yyyy-MM-dd")
  46. @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
  47. private Date createdate;
  48. /** 修改人 */
  49. @Excel(name = "修改人")
  50. private Long updaterCode;
  51. /** 修改时间 */
  52. @JsonFormat(pattern = "yyyy-MM-dd")
  53. @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
  54. private Date updatedate;
  55. /** 部门编号 */
  56. @Excel(name = "部门编号")
  57. private Long deptId;
  58. /** 备注 */
  59. @Excel(name = "备注")
  60. private String remarks;
  61. public void setQualificationId(Long qualificationId)
  62. {
  63. this.qualificationId = qualificationId;
  64. }
  65. public Long getQualificationId()
  66. {
  67. return qualificationId;
  68. }
  69. public void setSupplierId(Long supplierId)
  70. {
  71. this.supplierId = supplierId;
  72. }
  73. public Long getSupplierId()
  74. {
  75. return supplierId;
  76. }
  77. public void setQualificationUrl(String qualificationUrl)
  78. {
  79. this.qualificationUrl = qualificationUrl;
  80. }
  81. public String getQualificationUrl()
  82. {
  83. return qualificationUrl;
  84. }
  85. public void setStartDate(Date startDate)
  86. {
  87. this.startDate = startDate;
  88. }
  89. public Date getStartDate()
  90. {
  91. return startDate;
  92. }
  93. public void setEndDate(Date endDate)
  94. {
  95. this.endDate = endDate;
  96. }
  97. public Date getEndDate()
  98. {
  99. return endDate;
  100. }
  101. public void setDocumentType(String documentType)
  102. {
  103. this.documentType = documentType;
  104. }
  105. public String getDocumentType()
  106. {
  107. return documentType;
  108. }
  109. public void setStatus(Long status)
  110. {
  111. this.status = status;
  112. }
  113. public Long getStatus()
  114. {
  115. return status;
  116. }
  117. public void setDelFlag(Integer delFlag)
  118. {
  119. this.delFlag = delFlag;
  120. }
  121. public Integer getDelFlag()
  122. {
  123. return delFlag;
  124. }
  125. public void setCreaterCode(Long createrCode)
  126. {
  127. this.createrCode = createrCode;
  128. }
  129. public Long getCreaterCode()
  130. {
  131. return createrCode;
  132. }
  133. public void setCreatedate(Date createdate)
  134. {
  135. this.createdate = createdate;
  136. }
  137. public Date getCreatedate()
  138. {
  139. return createdate;
  140. }
  141. public void setUpdaterCode(Long updaterCode)
  142. {
  143. this.updaterCode = updaterCode;
  144. }
  145. public Long getUpdaterCode()
  146. {
  147. return updaterCode;
  148. }
  149. public void setUpdatedate(Date updatedate)
  150. {
  151. this.updatedate = updatedate;
  152. }
  153. public Date getUpdatedate()
  154. {
  155. return updatedate;
  156. }
  157. public void setDeptId(Long deptId)
  158. {
  159. this.deptId = deptId;
  160. }
  161. public Long getDeptId()
  162. {
  163. return deptId;
  164. }
  165. public void setRemarks(String remarks)
  166. {
  167. this.remarks = remarks;
  168. }
  169. public String getRemarks()
  170. {
  171. return remarks;
  172. }
  173. @Override
  174. public String toString() {
  175. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  176. .append("qualificationId", getQualificationId())
  177. .append("supplierId", getSupplierId())
  178. .append("qualificationUrl", getQualificationUrl())
  179. .append("startDate", getStartDate())
  180. .append("endDate", getEndDate())
  181. .append("documentType", getDocumentType())
  182. .append("status", getStatus())
  183. .append("delFlag", getDelFlag())
  184. .append("createrCode", getCreaterCode())
  185. .append("createdate", getCreatedate())
  186. .append("updaterCode", getUpdaterCode())
  187. .append("updatedate", getUpdatedate())
  188. .append("deptId", getDeptId())
  189. .append("remarks", getRemarks())
  190. .toString();
  191. }
  192. }