123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- package com.ruoyi.supplier.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 供应商资质对象 t_canteen_qualification
- *
- * @author ruoyi
- * @date 2025-04-22
- */
- public class TCanteenQualification extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 资质id */
- private Long qualificationId;
- /** 供应商id */
- @Excel(name = "供应商id")
- private Long supplierId;
- /** 资质附件地址 */
- @Excel(name = "资质附件地址")
- private String qualificationUrl;
- /** 注册日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "注册日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date startDate;
- /** 截止日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "截止日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date endDate;
- /** 证件类型 */
- @Excel(name = "证件类型")
- private String documentType;
- /** 状态 */
- @Excel(name = "状态")
- private Long status;
- /** 状态 0 :正常 ;2:删除 */
- private Integer delFlag;
- /** 创建人 */
- @Excel(name = "创建人")
- private Long createrCode;
- /** 创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date createdate;
- /** 修改人 */
- @Excel(name = "修改人")
- private Long updaterCode;
- /** 修改时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date updatedate;
- /** 部门编号 */
- @Excel(name = "部门编号")
- private Long deptId;
- /** 备注 */
- @Excel(name = "备注")
- private String remarks;
- public void setQualificationId(Long qualificationId)
- {
- this.qualificationId = qualificationId;
- }
- public Long getQualificationId()
- {
- return qualificationId;
- }
- public void setSupplierId(Long supplierId)
- {
- this.supplierId = supplierId;
- }
- public Long getSupplierId()
- {
- return supplierId;
- }
- public void setQualificationUrl(String qualificationUrl)
- {
- this.qualificationUrl = qualificationUrl;
- }
- public String getQualificationUrl()
- {
- return qualificationUrl;
- }
- public void setStartDate(Date startDate)
- {
- this.startDate = startDate;
- }
- public Date getStartDate()
- {
- return startDate;
- }
- public void setEndDate(Date endDate)
- {
- this.endDate = endDate;
- }
- public Date getEndDate()
- {
- return endDate;
- }
- public void setDocumentType(String documentType)
- {
- this.documentType = documentType;
- }
- public String getDocumentType()
- {
- return documentType;
- }
- public void setStatus(Long status)
- {
- this.status = status;
- }
- public Long getStatus()
- {
- return status;
- }
- public void setDelFlag(Integer delFlag)
- {
- this.delFlag = delFlag;
- }
- public Integer getDelFlag()
- {
- return delFlag;
- }
- public void setCreaterCode(Long createrCode)
- {
- this.createrCode = createrCode;
- }
- public Long getCreaterCode()
- {
- return createrCode;
- }
- public void setCreatedate(Date createdate)
- {
- this.createdate = createdate;
- }
- public Date getCreatedate()
- {
- return createdate;
- }
- public void setUpdaterCode(Long updaterCode)
- {
- this.updaterCode = updaterCode;
- }
- public Long getUpdaterCode()
- {
- return updaterCode;
- }
- public void setUpdatedate(Date updatedate)
- {
- this.updatedate = updatedate;
- }
- public Date getUpdatedate()
- {
- return updatedate;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("qualificationId", getQualificationId())
- .append("supplierId", getSupplierId())
- .append("qualificationUrl", getQualificationUrl())
- .append("startDate", getStartDate())
- .append("endDate", getEndDate())
- .append("documentType", getDocumentType())
- .append("status", getStatus())
- .append("delFlag", getDelFlag())
- .append("createrCode", getCreaterCode())
- .append("createdate", getCreatedate())
- .append("updaterCode", getUpdaterCode())
- .append("updatedate", getUpdatedate())
- .append("deptId", getDeptId())
- .append("remarks", getRemarks())
- .toString();
- }
- }
|