|
|
@@ -0,0 +1,139 @@
|
|
|
+package com.fs.hisStore.vo;
|
|
|
+
|
|
|
+import com.fs.common.annotation.Excel;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class FsStoreScrmExcelVO {
|
|
|
+
|
|
|
+
|
|
|
+ @Excel(name = "入驻商企业名称")
|
|
|
+ private String fullName;
|
|
|
+
|
|
|
+ @Excel(name = "商家编号")
|
|
|
+ private String merchantId;
|
|
|
+
|
|
|
+ @Excel(name = "统一社会信用代码")
|
|
|
+ private String unifiedSocialCreditCode;
|
|
|
+
|
|
|
+ @Excel(name = "经营方式")
|
|
|
+ private String businessType;
|
|
|
+
|
|
|
+
|
|
|
+ @Excel(name = "经营范围")
|
|
|
+ private String businessScope;
|
|
|
+
|
|
|
+ @Excel(name = "法定代表人姓名")
|
|
|
+ private String legalPersonName;
|
|
|
+
|
|
|
+ @Excel(name = "身份证号码")
|
|
|
+ private String legalNum;
|
|
|
+
|
|
|
+ @Excel(name = "联系电话")
|
|
|
+ private String legalPhone;
|
|
|
+
|
|
|
+ @Excel(name = "企业负责人姓名")
|
|
|
+ private String enterPrise;
|
|
|
+
|
|
|
+ @Excel(name = "身份证号码")
|
|
|
+ private String enterPriseNum;
|
|
|
+
|
|
|
+ @Excel(name = "联系电话")
|
|
|
+ private String enterPrisePhone;
|
|
|
+
|
|
|
+ @Excel(name = "质量安全负责人姓名")
|
|
|
+ private String qualityPerson;
|
|
|
+
|
|
|
+ @Excel(name = "身份证号码")
|
|
|
+ private String qualityNum;
|
|
|
+
|
|
|
+ @Excel(name = "联系电话")
|
|
|
+ private String qualityPhone;
|
|
|
+
|
|
|
+ @Excel(name = "注册地址")
|
|
|
+ private String enterpriseAddress;
|
|
|
+
|
|
|
+ @Excel(name = "经营地址")
|
|
|
+ private String businessAddress;
|
|
|
+
|
|
|
+ @Excel(name = "仓库地址")
|
|
|
+ private String warehouseAddress;
|
|
|
+
|
|
|
+ @Excel(name = "店铺名称")
|
|
|
+ private String storeName;
|
|
|
+
|
|
|
+ @Excel(name = "店铺链接")
|
|
|
+ private String logoUrl;
|
|
|
+
|
|
|
+ @Excel(name = "营业执照编号")
|
|
|
+ private String businessCode;
|
|
|
+
|
|
|
+ @Excel(name = "有效期")
|
|
|
+ private LocalDate businessLicenseExpireEnd;
|
|
|
+
|
|
|
+ @Excel(name = "许可证编号")
|
|
|
+ private String drugCode;
|
|
|
+
|
|
|
+ @Excel(name = "有效期")
|
|
|
+ private LocalDate drugLicenseExpiryEnd;
|
|
|
+
|
|
|
+ @Excel(name = "经营行为、范围与证照一致")
|
|
|
+ private String isBusinessLicensePermanent;
|
|
|
+
|
|
|
+ @Excel(name = "质量历史(有无重大质量事故)")
|
|
|
+ private String isQualityHistory;
|
|
|
+
|
|
|
+ @Excel(name = "营业执照编号")
|
|
|
+ private String medicalDevice1Code;
|
|
|
+
|
|
|
+ @Excel(name = "有效期")
|
|
|
+ private LocalDate medicalDevice1ExpiryEnd;
|
|
|
+
|
|
|
+ @Excel(name = "许可证编号")
|
|
|
+ private String medicalDevice3Code;
|
|
|
+
|
|
|
+ @Excel(name = "有效期")
|
|
|
+ private LocalDate medicalDevice3ExpiryEnd;
|
|
|
+
|
|
|
+ @Excel(name = "生产行为、范围与证照一致")
|
|
|
+ private String isMedicalDevice1Permanent;
|
|
|
+
|
|
|
+ @Excel(name = "质量历史(有无重大质量事故)")
|
|
|
+ private String isMedicalDevice3History;
|
|
|
+
|
|
|
+ @Excel(name = "质量管理机构硬件设备是否配备")
|
|
|
+ private String isQualityHardware;
|
|
|
+
|
|
|
+ @Excel(name = "质量管理机构人员配置是否符合管理要求")
|
|
|
+ private String isQualityPerson;
|
|
|
+
|
|
|
+ @Excel(name = "质量管理制度、操作规程、职责是否齐全")
|
|
|
+ private String isQualitySystem;
|
|
|
+
|
|
|
+ @Excel(name = "库房面积是否与经营规模相适应")
|
|
|
+ private String isWarehouse;
|
|
|
+
|
|
|
+ @Excel(name = "库房分库、分区布局是否符合要求")
|
|
|
+ private String isWarehouseLayout;
|
|
|
+
|
|
|
+ @Excel(name = "库房是否安装有温湿度自动监测设备")
|
|
|
+ private String isWarehouseTemperature;
|
|
|
+
|
|
|
+ @Excel(name = "库房空调、除湿机、排气扇等是否能正常运转")
|
|
|
+ private String isWarehouseAirConditioner;
|
|
|
+
|
|
|
+ @Excel(name = "审核结论", readConverterExp = "同意入驻=1,不通过=0,驳回=-1")
|
|
|
+ private Integer isAudit;
|
|
|
+
|
|
|
+ @Excel(name = "审核人")
|
|
|
+ private String auditPerson;
|
|
|
+
|
|
|
+ @Excel(name = "日期")
|
|
|
+ private LocalDate auditDate;
|
|
|
+
|
|
|
+ @Excel(name = "违规违法行为登记(附详情记录)")
|
|
|
+ private String illegalBehavior;
|
|
|
+
|
|
|
+}
|