|
@@ -93,46 +93,105 @@ public class FsStoreScrm extends BaseEntity
|
|
private String shippingType;
|
|
private String shippingType;
|
|
|
|
|
|
|
|
|
|
|
|
+ /** 佣金类型 */
|
|
private Integer brokerageType;
|
|
private Integer brokerageType;
|
|
|
|
|
|
|
|
+ /** 佣金比例 */
|
|
private Integer brokerageRate;
|
|
private Integer brokerageRate;
|
|
|
|
|
|
-
|
|
|
|
|
|
+ /** 店铺全称 */
|
|
private String fullName;
|
|
private String fullName;
|
|
|
|
|
|
-
|
|
|
|
|
|
+ /** 退货联系电话 */
|
|
private String refundPhone;
|
|
private String refundPhone;
|
|
|
|
+
|
|
|
|
+ /** 退货地址 */
|
|
private String refundAddress;
|
|
private String refundAddress;
|
|
|
|
+
|
|
|
|
+ /** 退货联系人 */
|
|
private String refundConsignee;
|
|
private String refundConsignee;
|
|
|
|
|
|
|
|
+ /** 配送方式 */
|
|
private Integer deliveryType;
|
|
private Integer deliveryType;
|
|
|
|
|
|
|
|
+ /** 发货联系电话 */
|
|
private String sendPhone;
|
|
private String sendPhone;
|
|
|
|
|
|
|
|
+ /** 企业注册地址 */
|
|
private String enterpriseAddress;
|
|
private String enterpriseAddress;
|
|
|
|
+
|
|
|
|
+ /** 法人代表姓名 */
|
|
private String legalPersonName;
|
|
private String legalPersonName;
|
|
|
|
+
|
|
|
|
+ /** 统一社会信用代码 */
|
|
private String unifiedSocialCreditCode;
|
|
private String unifiedSocialCreditCode;
|
|
|
|
+ /** 统一社会信用代码失效日期 */
|
|
|
|
+ private String unifiedSocialCreditCodeExpireEnd;
|
|
|
|
+
|
|
|
|
+ /** 经营范围 */
|
|
private String businessScope;
|
|
private String businessScope;
|
|
|
|
+
|
|
|
|
+ /** 营业执照图片 */
|
|
private String businessLicense;
|
|
private String businessLicense;
|
|
|
|
+
|
|
|
|
+ /** 营业执照有效期开始 */
|
|
private LocalDate businessLicenseExpireStart;
|
|
private LocalDate businessLicenseExpireStart;
|
|
|
|
+
|
|
|
|
+ /** 营业执照有效期结束 */
|
|
private LocalDate businessLicenseExpireEnd;
|
|
private LocalDate businessLicenseExpireEnd;
|
|
|
|
+
|
|
|
|
+ /** 药品经营许可证 */
|
|
private String drugLicense;
|
|
private String drugLicense;
|
|
|
|
+
|
|
|
|
+ /** 药品经营许可证有效期开始 */
|
|
private LocalDate drugLicenseExpiryStart;
|
|
private LocalDate drugLicenseExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 药品经营许可证有效期结束 */
|
|
private LocalDate drugLicenseExpiryEnd;
|
|
private LocalDate drugLicenseExpiryEnd;
|
|
|
|
+
|
|
|
|
+ /** 1类器械生产备案 */
|
|
private String medicalDevice1;
|
|
private String medicalDevice1;
|
|
|
|
+
|
|
|
|
+ /** 1类器械生产备案有效期开始 */
|
|
private LocalDate medicalDevice1ExpiryStart;
|
|
private LocalDate medicalDevice1ExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 1类器械生产备案有效期结束 */
|
|
private LocalDate medicalDevice1ExpiryEnd;
|
|
private LocalDate medicalDevice1ExpiryEnd;
|
|
|
|
+
|
|
|
|
+ /** 2类医疗器械备案 */
|
|
private String medicalDevice2;
|
|
private String medicalDevice2;
|
|
|
|
+
|
|
|
|
+ /** 2类医疗器械备案有效期开始 */
|
|
private LocalDate medicalDevice2ExpiryStart;
|
|
private LocalDate medicalDevice2ExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 2类医疗器械备案有效期结束 */
|
|
private LocalDate medicalDevice2ExpiryEnd;
|
|
private LocalDate medicalDevice2ExpiryEnd;
|
|
|
|
+
|
|
|
|
+ /** 3类器械经营许可证 */
|
|
private String medicalDevice3;
|
|
private String medicalDevice3;
|
|
|
|
+
|
|
|
|
+ /** 3类器械经营许可证有效期开始 */
|
|
private LocalDate medicalDevice3ExpiryStart;
|
|
private LocalDate medicalDevice3ExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 3类器械经营许可证有效期结束 */
|
|
private LocalDate medicalDevice3ExpiryEnd;
|
|
private LocalDate medicalDevice3ExpiryEnd;
|
|
|
|
+
|
|
|
|
+ /** 食品经营许可证 */
|
|
private String foodLicense;
|
|
private String foodLicense;
|
|
|
|
+
|
|
|
|
+ /** 食品经营许可证有效期开始 */
|
|
private LocalDate foodLicenseExpiryStart;
|
|
private LocalDate foodLicenseExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 食品经营许可证有效期结束 */
|
|
private LocalDate foodLicenseExpiryEnd;
|
|
private LocalDate foodLicenseExpiryEnd;
|
|
|
|
+
|
|
|
|
+ /** 医疗机构执业许可证 */
|
|
private String medicalLicense;
|
|
private String medicalLicense;
|
|
|
|
+
|
|
|
|
+ /** 医疗机构执业许可证有效期开始 */
|
|
private LocalDate medicalLicenseExpiryStart;
|
|
private LocalDate medicalLicenseExpiryStart;
|
|
|
|
+
|
|
|
|
+ /** 医疗机构执业许可证有效期结束 */
|
|
private LocalDate medicalLicenseExpiryEnd;
|
|
private LocalDate medicalLicenseExpiryEnd;
|
|
|
|
|
|
}
|
|
}
|