单据字段缺失,新增首营资质数据传输
parent
77d82e8d7d
commit
1e49a88194
@ -0,0 +1,40 @@
|
|||||||
|
package com.glxp.sale.admin.entity.sync;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SupManufacturerEntity {
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
private String companyName;
|
||||||
|
private String creditCode;
|
||||||
|
private String companyType;
|
||||||
|
private String placeArea;
|
||||||
|
private String placeAreaCode;
|
||||||
|
private String placeAddress;
|
||||||
|
private String detailAddr;
|
||||||
|
private String legalPersonName;
|
||||||
|
private String legalPersonPapersType;
|
||||||
|
private String legalPersonPapersCode;
|
||||||
|
private String productionArea;
|
||||||
|
private String productionAreaCode;
|
||||||
|
private String productionAddress;
|
||||||
|
private String registerStatus;
|
||||||
|
private String productionLicenceNum;
|
||||||
|
private Date productionLicenceDate;
|
||||||
|
private String productionRecordNum;
|
||||||
|
private String productionRecordSection;
|
||||||
|
private Date productionRecordDate;
|
||||||
|
private String remark;
|
||||||
|
private Date createTime;
|
||||||
|
private Date updateTime;
|
||||||
|
private String customerId;
|
||||||
|
private String manufacturerId;
|
||||||
|
|
||||||
|
private Integer auditStatus;
|
||||||
|
private String supName;
|
||||||
|
private String auditComment;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
package com.glxp.sale.admin.entity.sync;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SupProductEntity {
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
private String productId;
|
||||||
|
private Long enterpriseId;
|
||||||
|
private String recordCode;
|
||||||
|
private String recordProductName;
|
||||||
|
private String productManageType;
|
||||||
|
private String recordPeopleName;
|
||||||
|
private String recordPeopleArea;
|
||||||
|
private String recordPeopleAreaCode;
|
||||||
|
private String recordPeopleAddress;
|
||||||
|
private String productType;
|
||||||
|
private String productDirectoryCode;
|
||||||
|
private String agentName;
|
||||||
|
private String agentArea;
|
||||||
|
private String agentAreaCode;
|
||||||
|
private String agentAddress;
|
||||||
|
private String instructions;
|
||||||
|
private String productAddress;
|
||||||
|
private String recordText;
|
||||||
|
private String placeOrigin;
|
||||||
|
private String productionRegion;
|
||||||
|
private String productionCompanyName;
|
||||||
|
private String afterSale;
|
||||||
|
private String specification;
|
||||||
|
private String structure;
|
||||||
|
private String scope;
|
||||||
|
private String other;
|
||||||
|
private String filePath;
|
||||||
|
private String remark;
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||||
|
private Date createTime;
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
private String newFilePath;
|
||||||
|
private String newInstructions;
|
||||||
|
|
||||||
|
private String manufacturerIdFk;
|
||||||
|
private String customerId;
|
||||||
|
|
||||||
|
|
||||||
|
private Integer auditStatus;
|
||||||
|
private String auditComment;
|
||||||
|
private String sptm;
|
||||||
|
private String ybbm;
|
||||||
|
private String measname;
|
||||||
|
private String cpms;
|
||||||
|
private String hchzsb;
|
||||||
|
private String relIdFk;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue