From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:41:54 +0800 Subject: [PATCH] commit --- src/main/java/com/gk/firework/Domain/ContractOrderInfo.java | 696 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 696 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/ContractOrderInfo.java b/src/main/java/com/gk/firework/Domain/ContractOrderInfo.java new file mode 100644 index 0000000..50d4ab2 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/ContractOrderInfo.java @@ -0,0 +1,696 @@ +package com.gk.firework.Domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import org.springframework.format.annotation.DateTimeFormat; + +import java.io.Serializable; +import java.util.Date; +import java.util.List; + +@ApiModel("合同订单类") +@TableName("contractorder") +public class ContractOrderInfo implements Serializable { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @ApiModelProperty("合同订单id") + @TableId(type = IdType.AUTO) + private Long id; + + /** 合同单号 ordercode **/ + @ApiModelProperty("合同单号") + private String ordercode; + + /** 规律合同编号 regularcode **/ + @ApiModelProperty("规律合同编号") + private String regularcode; + + /** 合同状态(待提交、待审核、待确认、已驳回、确认生产、拒绝生产) status **/ + @ApiModelProperty("合同状态") + private String status; + + @ApiModelProperty("标签退回状态") + // 未退回,有退回 + private String returnstatus; + + /** 甲方(经营企业) operator **/ + private String operator; + + /** 乙方(生产企业) manufacturer **/ + private String manufacturer; + + /** 初始合同 origincontract **/ + private String origincontract; + + /** 确认合同 confirmcontract **/ + private String confirmcontract; + + /** 创建人 createdby **/ + private String createdby; + + /** 创建时间 createddate **/ + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date createddate; + + /** 更新人 modifiedby **/ + private String modifiedby; + + /** 生产条码时间 producedate **/ + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date producedate; + + /** 更新时间 modifieddate **/ + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date modifieddate; + + /** 是否删除 isdel 1删除 0未删**/ + private Byte isdel; + + /**审批意见**/ + private String comments; + + /**生产意见**/ + private String opinion; + /**购买单位**/ + //企业编号 甲方 + private String purchaseenterprisenumber; + //单位名称 + private String purchaseunitname; + //单位地址 + private String purchaseunitaddress; + //法定代表人 + private String purchaserepresentative; + //法定代表人联系电话 + private String purchaserepresentativephone; + //法定代表人电子邮箱 + private String purchaserepresentativeemail; + //开户银行 + private String purchasebank; + //许可证编号 + private String purchaselicensenumber; + //邮政编码 + private String purchasezipcode; + //委托代理人 + private String purchaseagent; + //委托代理人联系电话 + private String purchaseagentphone; + //委托代理人电子邮箱 + private String purchaseagentemail; + //账户 + private String purchaseaccount; + /**供货单位**/ + + //企业编号 乙方 + private String supplyenterprisenumber; + //单位名称 + private String supplyunitname; + //单位地址 + private String supplyunitaddress; + //法定代表人 + private String supplyrepresentative; + //法定代表人联系电话 + private String supplyrepresentativephone; + //法定代表人电子邮箱 + private String supplyrepresentativeemail; + //开户银行 + private String supplybank; + //许可证编号 + private String supplylicensenumber; + //邮政编码 + private String supplyzipcode; + //委托代理人 + private String supplyagent; + //委托代理人联系电话 + private String supplyagentphone; + //委托代理人电子邮箱 + private String supplyagentemail; + //账户 + private String supplyaccount; + + //签订时间 + @DateTimeFormat(pattern = "yyyy-MM-dd") + private Date signtime; + //签订地点 + private String signlocation; + //合同内容 + //合同内容:产品质量标准及要求 + private String qualitystandard; + //合同内容:禁(限)用药物要求 + private String prohibiteddrug; + //合同内容:产品包装标准及要求 + private String packingstandard; + //合同内容:提(交)货时间和地点 + private String timeandlocation; + //合同内容:运输方式及费用负担 + private String transportandcost; + //合同内容:验收标准与方法 + private String acceptstandard; + //合同内容:提出异议期限 + private String objectdeadline; + //合同内容:结算方式与期限 + private String settlemethod; + //合同内容:产品安全与质量责任 + private String productsafetyandquality; + //合同内容:运输安全责任 + private String transportsafety; + //合同内容:违约责任 + private String breakcontract; + //合同内容:合同争议的解决方式:序号 + private String contractdisputesfelid; + //合同内容:合同争议的解决方式:序号内容 + private String contractdisputesfelidcontent; + //合同内容:其他约定事项 + private String otheragreedmatters; + //合同有效期 + @DateTimeFormat(pattern = "yyyy-MM-dd") + private Date validstarttime; + @DateTimeFormat(pattern = "yyyy-MM-dd") + private Date validendtime; + + @TableField(exist = false) + private ContractFile contractFile; + + + /** id **/ + public Long getId() { + return id; + } + + /** id **/ + public void setId(Long id) { + this.id = id; + } + + /** 合同单号 ordercode **/ + public String getOrdercode() { + return ordercode; + } + + /** 合同单号 ordercode **/ + public void setOrdercode(String ordercode) { + this.ordercode = ordercode == null ? null : ordercode.trim(); + } + + /** 合同状态(待提交、待审核、已通过、已拒绝) status **/ + public String getStatus() { + return status; + } + + /** 合同状态(待提交、待审核、已通过、已拒绝) status **/ + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + /** 甲方(经营企业) operator **/ + public String getOperator() { + return operator; + } + + /** 甲方(经营企业) operator **/ + public void setOperator(String operator) { + this.operator = operator == null ? null : operator.trim(); + } + + /** 乙方(生产企业) manufacturer **/ + public String getManufacturer() { + return manufacturer; + } + + /** 乙方(生产企业) manufacturer **/ + public void setManufacturer(String manufacturer) { + this.manufacturer = manufacturer == null ? null : manufacturer.trim(); + } + + /** 初始合同 origincontract **/ + public String getOrigincontract() { + return origincontract; + } + + /** 初始合同 origincontract **/ + public void setOrigincontract(String origincontract) { + this.origincontract = origincontract == null ? null : origincontract.trim(); + } + + /** 确认合同 confirmcontract **/ + public String getConfirmcontract() { + return confirmcontract; + } + + /** 确认合同 confirmcontract **/ + public void setConfirmcontract(String confirmcontract) { + this.confirmcontract = confirmcontract == null ? null : confirmcontract.trim(); + } + + /** 创建人 createdby **/ + public String getCreatedby() { + return createdby; + } + + /** 创建人 createdby **/ + public void setCreatedby(String createdby) { + this.createdby = createdby == null ? null : createdby.trim(); + } + + /** 创建时间 createddate **/ + public Date getCreateddate() { + return createddate; + } + + /** 创建时间 createddate **/ + public void setCreateddate(Date createddate) { + this.createddate = createddate; + } + + /** 更新人 modifiedby **/ + public String getModifiedby() { + return modifiedby; + } + + /** 更新人 modifiedby **/ + public void setModifiedby(String modifiedby) { + this.modifiedby = modifiedby == null ? null : modifiedby.trim(); + } + + /** 更新时间 modifieddate **/ + public Date getModifieddate() { + return modifieddate; + } + + /** 更新时间 modifieddate **/ + public void setModifieddate(Date modifieddate) { + this.modifieddate = modifieddate; + } + + public Byte getIsdel() { + return isdel; + } + + public void setIsdel(Byte isdel) { + this.isdel = isdel; + } + + public String getComments() { + return comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public String getOpinion() { + return opinion; + } + + public void setOpinion(String opinion) { + this.opinion = opinion; + } + + public String getRegularcode() { + return regularcode; + } + + public void setRegularcode(String regularcode) { + this.regularcode = regularcode; + } + + public String getPurchaseunitname() { + return purchaseunitname; + } + + public void setPurchaseunitname(String purchaseunitname) { + this.purchaseunitname = purchaseunitname; + } + + public String getPurchaseunitaddress() { + return purchaseunitaddress; + } + + public void setPurchaseunitaddress(String purchaseunitaddress) { + this.purchaseunitaddress = purchaseunitaddress; + } + + public String getPurchaserepresentative() { + return purchaserepresentative; + } + + public void setPurchaserepresentative(String purchaserepresentative) { + this.purchaserepresentative = purchaserepresentative; + } + + public String getPurchaserepresentativephone() { + return purchaserepresentativephone; + } + + public void setPurchaserepresentativephone(String purchaserepresentativephone) { + this.purchaserepresentativephone = purchaserepresentativephone; + } + + public String getPurchasebank() { + return purchasebank; + } + + public void setPurchasebank(String purchasebank) { + this.purchasebank = purchasebank; + } + + public String getPurchaselicensenumber() { + return purchaselicensenumber; + } + + public void setPurchaselicensenumber(String purchaselicensenumber) { + this.purchaselicensenumber = purchaselicensenumber; + } + + public String getPurchasezipcode() { + return purchasezipcode; + } + + public void setPurchasezipcode(String purchasezipcode) { + this.purchasezipcode = purchasezipcode; + } + + public String getPurchaseagent() { + return purchaseagent; + } + + public void setPurchaseagent(String purchaseagent) { + this.purchaseagent = purchaseagent; + } + + public String getPurchaseagentphone() { + return purchaseagentphone; + } + + public void setPurchaseagentphone(String purchaseagentphone) { + this.purchaseagentphone = purchaseagentphone; + } + + public String getPurchaseagentemail() { + return purchaseagentemail; + } + + public void setPurchaseagentemail(String purchaseagentemail) { + this.purchaseagentemail = purchaseagentemail; + } + + public String getPurchaseaccount() { + return purchaseaccount; + } + + public void setPurchaseaccount(String purchaseaccount) { + this.purchaseaccount = purchaseaccount; + } + + public String getSupplyunitname() { + return supplyunitname; + } + + public void setSupplyunitname(String supplyunitname) { + this.supplyunitname = supplyunitname; + } + + public String getSupplyunitaddress() { + return supplyunitaddress; + } + + public void setSupplyunitaddress(String supplyunitaddress) { + this.supplyunitaddress = supplyunitaddress; + } + + public String getSupplyrepresentative() { + return supplyrepresentative; + } + + public void setSupplyrepresentative(String supplyrepresentative) { + this.supplyrepresentative = supplyrepresentative; + } + + public String getSupplyrepresentativephone() { + return supplyrepresentativephone; + } + + public void setSupplyrepresentativephone(String supplyrepresentativephone) { + this.supplyrepresentativephone = supplyrepresentativephone; + } + + public String getSupplybank() { + return supplybank; + } + + public void setSupplybank(String supplybank) { + this.supplybank = supplybank; + } + + public String getSupplylicensenumber() { + return supplylicensenumber; + } + + public void setSupplylicensenumber(String supplylicensenumber) { + this.supplylicensenumber = supplylicensenumber; + } + + public String getSupplyzipcode() { + return supplyzipcode; + } + + public void setSupplyzipcode(String supplyzipcode) { + this.supplyzipcode = supplyzipcode; + } + + public String getSupplyagent() { + return supplyagent; + } + + public void setSupplyagent(String supplyagent) { + this.supplyagent = supplyagent; + } + + public String getSupplyagentphone() { + return supplyagentphone; + } + + public void setSupplyagentphone(String supplyagentphone) { + this.supplyagentphone = supplyagentphone; + } + + public String getSupplyagentemail() { + return supplyagentemail; + } + + public void setSupplyagentemail(String supplyagentemail) { + this.supplyagentemail = supplyagentemail; + } + + public String getSupplyaccount() { + return supplyaccount; + } + + public void setSupplyaccount(String supplyaccount) { + this.supplyaccount = supplyaccount; + } + + public Date getSigntime() { + return signtime; + } + + public void setSigntime(Date signtime) { + this.signtime = signtime; + } + + public String getSignlocation() { + return signlocation; + } + + public void setSignlocation(String signlocation) { + this.signlocation = signlocation; + } + + public String getQualitystandard() { + return qualitystandard; + } + + public void setQualitystandard(String qualitystandard) { + this.qualitystandard = qualitystandard; + } + + public String getProhibiteddrug() { + return prohibiteddrug; + } + + public void setProhibiteddrug(String prohibiteddrug) { + this.prohibiteddrug = prohibiteddrug; + } + + public String getPackingstandard() { + return packingstandard; + } + + public void setPackingstandard(String packingstandard) { + this.packingstandard = packingstandard; + } + + public String getTimeandlocation() { + return timeandlocation; + } + + public void setTimeandlocation(String timeandlocation) { + this.timeandlocation = timeandlocation; + } + + public String getTransportandcost() { + return transportandcost; + } + + public void setTransportandcost(String transportandcost) { + this.transportandcost = transportandcost; + } + + public String getAcceptstandard() { + return acceptstandard; + } + + public void setAcceptstandard(String acceptstandard) { + this.acceptstandard = acceptstandard; + } + + public String getObjectdeadline() { + return objectdeadline; + } + + public void setObjectdeadline(String objectdeadline) { + this.objectdeadline = objectdeadline; + } + + public String getSettlemethod() { + return settlemethod; + } + + public void setSettlemethod(String settlemethod) { + this.settlemethod = settlemethod; + } + + public String getProductsafetyandquality() { + return productsafetyandquality; + } + + public void setProductsafetyandquality(String productsafetyandquality) { + this.productsafetyandquality = productsafetyandquality; + } + + public String getTransportsafety() { + return transportsafety; + } + + public void setTransportsafety(String transportsafety) { + this.transportsafety = transportsafety; + } + + public String getBreakcontract() { + return breakcontract; + } + + public void setBreakcontract(String breakcontract) { + this.breakcontract = breakcontract; + } + + public String getContractdisputesfelid() { + return contractdisputesfelid; + } + + public void setContractdisputesfelid(String contractdisputesfelid) { + this.contractdisputesfelid = contractdisputesfelid; + } + + public String getContractdisputesfelidcontent() { + return contractdisputesfelidcontent; + } + + public void setContractdisputesfelidcontent(String contractdisputesfelidcontent) { + this.contractdisputesfelidcontent = contractdisputesfelidcontent; + } + + public String getOtheragreedmatters() { + return otheragreedmatters; + } + + public void setOtheragreedmatters(String otheragreedmatters) { + this.otheragreedmatters = otheragreedmatters; + } + + public Date getValidstarttime() { + return validstarttime; + } + + public void setValidstarttime(Date validstarttime) { + this.validstarttime = validstarttime; + } + + public Date getValidendtime() { + return validendtime; + } + + public void setValidendtime(Date validendtime) { + this.validendtime = validendtime; + } + + public String getPurchaseenterprisenumber() { + return purchaseenterprisenumber; + } + + public void setPurchaseenterprisenumber(String purchaseenterprisenumber) { + this.purchaseenterprisenumber = purchaseenterprisenumber; + } + + public String getSupplyenterprisenumber() { + return supplyenterprisenumber; + } + + public void setSupplyenterprisenumber(String supplyenterprisenumber) { + this.supplyenterprisenumber = supplyenterprisenumber; + } + + public String getPurchaserepresentativeemail() { + return purchaserepresentativeemail; + } + + public void setPurchaserepresentativeemail(String purchaserepresentativeemail) { + this.purchaserepresentativeemail = purchaserepresentativeemail; + } + + public String getSupplyrepresentativeemail() { + return supplyrepresentativeemail; + } + + public void setSupplyrepresentativeemail(String supplyrepresentativeemail) { + this.supplyrepresentativeemail = supplyrepresentativeemail; + } + + public ContractFile getContractFile() { + return contractFile; + } + + public void setContractFile(ContractFile contractFile) { + this.contractFile = contractFile; + } + + public String getReturnstatus() { + return returnstatus; + } + + public void setReturnstatus(String returnstatus) { + this.returnstatus = returnstatus; + } + + public Date getProducedate() { + return producedate; + } + + public void setProducedate(Date producedate) { + this.producedate = producedate; + } +} -- Gitblit v1.9.2