parent
83187434b6
commit
5f23ebd502
22 changed files with 368 additions and 120 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,92 @@ |
||||
package com.daqing.framework.domain.crms.ext; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.ToString; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @auther River |
||||
* @date 2020/9/29 11:00 |
||||
*/ |
||||
@Data |
||||
@ToString |
||||
public class CustomerCompanyDTO implements Serializable { |
||||
|
||||
/** |
||||
* 客户编号 |
||||
*/ |
||||
@ApiModelProperty(value = "客户编号") |
||||
private String code; |
||||
/** |
||||
* 客户类型:1、企业类型,0:个人类型 |
||||
*/ |
||||
@ApiModelProperty(value = "企业类型") |
||||
private Integer type; |
||||
/** |
||||
* 客户经理 |
||||
*/ |
||||
@ApiModelProperty(value = "客户经理") |
||||
private Long manager; |
||||
/** |
||||
* 客户名称 |
||||
*/ |
||||
@ApiModelProperty(value = "客户名称") |
||||
private String name; |
||||
/** |
||||
* 联系地址 |
||||
*/ |
||||
@ApiModelProperty(value = "联系地址") |
||||
private String addr; |
||||
/** |
||||
* 联系电话 |
||||
*/ |
||||
@ApiModelProperty(value = "联系电话") |
||||
private String phone; |
||||
/** |
||||
* 注册资金 |
||||
*/ |
||||
@ApiModelProperty(value = "注册资金") |
||||
private String registeredCapital; |
||||
/** |
||||
* 所属行业 |
||||
*/ |
||||
@ApiModelProperty(value = "所属行业") |
||||
private String industry; |
||||
/** |
||||
* 成立年限 |
||||
*/ |
||||
@ApiModelProperty(value = "成立年限") |
||||
private Integer years; |
||||
/** |
||||
* 所在区域 |
||||
*/ |
||||
@ApiModelProperty(value = "所在区域") |
||||
private String region; |
||||
/** |
||||
* 股东名称 |
||||
*/ |
||||
@ApiModelProperty(value = "股东名称") |
||||
private String shareholder; |
||||
/** |
||||
* 关联企业 |
||||
*/ |
||||
@ApiModelProperty(value = "关联企业") |
||||
private String affiliatedCompany; |
||||
/** |
||||
* 员工个数 |
||||
*/ |
||||
@ApiModelProperty(value = "员工个数") |
||||
private String empNum; |
||||
/** |
||||
* 联系人 |
||||
*/ |
||||
@ApiModelProperty(value = "联系人") |
||||
private String linkman; |
||||
/** |
||||
* 业务来源 |
||||
*/ |
||||
@ApiModelProperty(value = "业务来源") |
||||
private String businessSource; |
||||
} |
@ -0,0 +1,101 @@ |
||||
package com.daqing.framework.domain.crms.ext; |
||||
|
||||
import lombok.Data; |
||||
import lombok.ToString; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* @auther River |
||||
* @date 2020/9/29 11:01 |
||||
*/ |
||||
@Data |
||||
@ToString |
||||
public class CustomerPersonalDTO implements Serializable { |
||||
|
||||
/** |
||||
* 客户编号 |
||||
*/ |
||||
private String code; |
||||
/** |
||||
* 客户类型:1、企业类型,0:个人类型 |
||||
*/ |
||||
private Integer type; |
||||
/** |
||||
* 客户经理 |
||||
*/ |
||||
private Long manager; |
||||
/** |
||||
* 客户名称 |
||||
*/ |
||||
private String name; |
||||
/** |
||||
* 联系地址 |
||||
*/ |
||||
private String addr; |
||||
/** |
||||
* 联系电话 |
||||
*/ |
||||
private String phone; |
||||
/** |
||||
* 身份证号 |
||||
*/ |
||||
private String idCard; |
||||
/** |
||||
* 年龄 |
||||
*/ |
||||
private Integer age; |
||||
/** |
||||
* 性别:1、男,0、女 |
||||
*/ |
||||
private Integer gender; |
||||
/** |
||||
* 婚姻状况:1、已婚,0、未婚 |
||||
*/ |
||||
private Integer maritalStatus; |
||||
/** |
||||
* 学历 |
||||
*/ |
||||
private Integer education; |
||||
/** |
||||
* 工作单位 |
||||
*/ |
||||
private String employer; |
||||
/** |
||||
* 职务 |
||||
*/ |
||||
private String position; |
||||
/** |
||||
* 工作年限 |
||||
*/ |
||||
private Integer workingYears; |
||||
/** |
||||
* 社保账号 |
||||
*/ |
||||
private String socialSecurityNum; |
||||
/** |
||||
* 居住情况 |
||||
*/ |
||||
private String livingSituation; |
||||
/** |
||||
* 户籍地址 |
||||
*/ |
||||
private String residenceAddr; |
||||
/** |
||||
* 业务来源 |
||||
*/ |
||||
private String businessSource; |
||||
/** |
||||
* 紧急联系人 |
||||
*/ |
||||
private String emergencyLinkman; |
||||
/** |
||||
* 紧急联系人关系 |
||||
*/ |
||||
private String emergencyLinkmanRelationship; |
||||
/** |
||||
* 紧急联系人电话 |
||||
*/ |
||||
private String emergencyLinkmanPhone; |
||||
|
||||
} |
Binary file not shown.
Binary file not shown.
@ -1 +1,4 @@ |
||||
jwt.ignoreUrlList=/apiHrmsAuth/hrms/auth/userlogin/getBackPwd,/apiHrmsAuth/hrms/auth/userlogin/login,/apiHrmsAuth/hrms/auth/userlogin/verifyMobile |
||||
jwt.ignoreUrlList=/apiHrmsAuth/hrms/auth/userlogin/getBackPwd,\ |
||||
/apiHrmsAuth/hrms/auth/userlogin/login,\ |
||||
/apiHrmsAuth/hrms/auth/userlogin/verifyMobile,\ |
||||
/api-crms/sweagger-ui.html |
@ -1 +1,4 @@ |
||||
jwt.ignoreUrlList=/route-api/login,/route-api/refresh |
||||
jwt.ignoreUrlList=/apiHrmsAuth/hrms/auth/userlogin/getBackPwd,\ |
||||
/apiHrmsAuth/hrms/auth/userlogin/login,\ |
||||
/apiHrmsAuth/hrms/auth/userlogin/verifyMobile,\ |
||||
/api-crms/sweagger-ui.html |
Loading…
Reference in new issue