文档
测试

新增客户

POST
/api/customer/saveCustomer

接口描述

新增客户

请求参数

参数名
类型
描述
必填
fullName
string
示例:张三丰1
可选
id
string
30001
必填

响应参数

参数名
类型
描述
必填
msg
string
示例:操作成功
必填
code
int
示例:0
必填
data
int
示例:1
必填

说明 / 示例

/** 客户编号 */ private String id; /** 客户全称 */ @Excel(name = "客户全称") private String fullName; /** 客户简称 */ @Excel(name = "客户简称") private String nickName; /** 英文名称 */ @Excel(name = "英文名称") private String englishName; /** 客户类别 */ @Excel(name = "客户类别") private Integer customerType; /** 注册地址 */ @Excel(name = "注册地址") private String registerAddr; /** 法人代表 */ @Excel(name = "法人代表") private String representative; /** 办公地址 */ @Excel(name = "办公地址") private String officeAddr; /** 客户所在省份 */ @Excel(name = "客户所在省份") private String province; /** 客户所在城市 */ @Excel(name = "客户所在城市") private String city; /** 结算期限(天) */ @Excel(name = "结算期限(天)") private Integer settlementLimit; /** 逾期金额 */ @Excel(name = "逾期金额") private BigDecimal overdueAmt; /** 业务员编号 */ @Excel(name = "业务员编号") private String operUserid; /** 业务员名称 */ @Excel(name = "业务员名称") private String operUsername; /** 备注信息 */ @Excel(name = "备注信息") private String remark1; /** 审核状态 */ @Excel(name = "审核状态") private String auditStatus; /** 审核意见 */ @Excel(name = "审核意见") private String auditOpinion; /** 审核时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "审核时间", width = 30, dateFormat = "yyyy-MM-dd") private Date auditTime; /** 审核用户ID */ @Excel(name = "审核用户ID") private String auditUserid; /** 审核用户名称 */ @Excel(name = "审核用户名称") private String auditUsername; /** 联系人名称 */ @Excel(name = "联系人名称") private String contactsName; /** 联系人手机号码 */ @Excel(name = "联系人手机号码") private String contactsMobile; /** 联系人座机号码 */ @Excel(name = "联系人座机号码") private String contactsPhone; /** 联系人传真 */ @Excel(name = "联系人传真") private String contactsFax; /** 联系人邮箱 */ @Excel(name = "联系人邮箱") private String contactsEmail; /** 联系人msn */ @Excel(name = "联系人msn") private String contactsMsn; /** 联系人qq */ @Excel(name = "联系人qq") private String contactsQq; /** 联系人skype */ @Excel(name = "联系人skype") private String contactsSkype; /** 联系人性别 */ @Excel(name = "联系人性别") private Integer contactsSex; /** 联系人地址 */ @Excel(name = "联系人地址") private String contactsAddr; /** 联系人爱好 */ @Excel(name = "联系人爱好") private String contactsHobby; /** 财务负责人名称 */ @Excel(name = "财务负责人名称") private String financeName; /** 财务负责人手机号码 */ @Excel(name = "财务负责人手机号码") private String financeMobile; /** 财务负责人座机号码 */ @Excel(name = "财务负责人座机号码") private String financePhone; /** 财务负责人传真 */ @Excel(name = "财务负责人传真") private String financeFax; /** 财务负责人邮箱 */ @Excel(name = "财务负责人邮箱") private String financeEmail; /** 财务负责人msn */ @Excel(name = "财务负责人msn") private String financeMsn; /** 财务负责人qq */ @Excel(name = "财务负责人qq") private String financeQq; /** 财务负责人skype */ @Excel(name = "财务负责人skype") private String financeSkype; /** 财务负责人性别 */ @Excel(name = "财务负责人性别") private Integer financeSex; /** 财务负责人地址 */ @Excel(name = "财务负责人地址") private String financeAddr; /** 财务负责人爱好 */ @Excel(name = "财务负责人爱好") private String financeHobby; /** 创建人编号 */ @Excel(name = "创建人编号") private String createUserid; /** 创建人名称 */ @Excel(name = "创建人名称") private String createUsername; /** 备注 */ @Excel(name = "备注") private String remark2;