|
|
@@ -0,0 +1,184 @@
|
|
|
+package com.cloud.sa.management.domain.dto;
|
|
|
+
|
|
|
+import com.cloud.sa.base.common.json.deserializer.DictValueVoDeserializer;
|
|
|
+import com.cloud.sa.base.common.json.deserializer.FileKeyVoDeserializer;
|
|
|
+import com.cloud.sa.base.common.json.serializer.FileKeyVoSerializer;
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class BlinkProviderDTO {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ * */
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务商类型
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = DictValueVoDeserializer.class)
|
|
|
+ private String providerType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务流水号
|
|
|
+ * */
|
|
|
+ private String serialNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务商名称
|
|
|
+ * */
|
|
|
+ private String providerName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 服务商ID
|
|
|
+ * */
|
|
|
+ private String providerId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统一社会代码
|
|
|
+ * */
|
|
|
+ private String uniformSocialCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 法人
|
|
|
+ * */
|
|
|
+ private String legalPerson;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 销售团队(数量)
|
|
|
+ * */
|
|
|
+ private Integer teamNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当前职务
|
|
|
+ * */
|
|
|
+ private String currentPosition;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 国家或地区
|
|
|
+ * */
|
|
|
+ private String countryRegion;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 省份
|
|
|
+ * */
|
|
|
+ private String province;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 省份名称
|
|
|
+ * */
|
|
|
+ private String provinceName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 城市
|
|
|
+ * */
|
|
|
+ private String city;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 城市名称
|
|
|
+ * */
|
|
|
+ private String cityName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 区县
|
|
|
+ * */
|
|
|
+ private String district;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 区县名称
|
|
|
+ * */
|
|
|
+ private String districtName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ * */
|
|
|
+ private String fullAddress;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人
|
|
|
+ * */
|
|
|
+ private String contactPeople;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 注册时间
|
|
|
+ * */
|
|
|
+ private String enrollTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 注册资本
|
|
|
+ * */
|
|
|
+ private String enrollCapital;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人电话
|
|
|
+ * */
|
|
|
+ private String contactPeoplePhone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公司简介
|
|
|
+ * */
|
|
|
+ private String companyProfile;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 经营范围
|
|
|
+ * */
|
|
|
+ private String businessScope;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 归属地区
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = DictValueVoDeserializer.class)
|
|
|
+ private String belongRegion;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 注册来源
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = DictValueVoDeserializer.class)
|
|
|
+ private String enrollSource;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 归属营销经理
|
|
|
+ * */
|
|
|
+ private String belongMarketingManger;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 营业执照
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = FileKeyVoDeserializer.class)
|
|
|
+ @JsonSerialize(using = FileKeyVoSerializer.class)
|
|
|
+ private String license;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 身份证人像面
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = FileKeyVoDeserializer.class)
|
|
|
+ @JsonSerialize(using = FileKeyVoSerializer.class)
|
|
|
+ private String idCardFront;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 身份证国徽面
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = FileKeyVoDeserializer.class)
|
|
|
+ @JsonSerialize(using = FileKeyVoSerializer.class)
|
|
|
+ private String idCardBack;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ * */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件
|
|
|
+ * */
|
|
|
+ @JsonDeserialize(using = FileKeyVoDeserializer.class)
|
|
|
+ @JsonSerialize(using = FileKeyVoSerializer.class)
|
|
|
+ private String attachment;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态(0-待审核、1-审核中、3未通过、4-通过)
|
|
|
+ * */
|
|
|
+ private String status;
|
|
|
+
|
|
|
+}
|