This commit is contained in:
linfso 2024-05-15 09:01:03 +08:00
parent 2c10a647cd
commit 10afa65abd
2 changed files with 7 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class EmisCustomerUser extends BaseEntity
private String mobile;
/* 客户类型 1-普通客户 2-月结客户 */
private String customerType;
/* 结算类型 : 1-现金 2-月结 3-月结到付 */
/* 结算类型 : 1-现金 2-月结 3-月结到付,可多选 */
private String settledType;
/* 用户类型 1-个人 2-公司 */
private String userType;
@ -82,6 +82,10 @@ public class EmisCustomerUser extends BaseEntity
private String password;
/* 归属站点 */
private String ownerSite;
/* 业务网点 */
private String bizSite;
/* 业务网点名称,逗号隔开 */
private String bizSiteName;
/* 国家 */
private String country;
/* 省份 */

View File

@ -30,6 +30,8 @@
<result property="userName" column="user_name" />
<result property="password" column="password" />
<result property="ownerSite" column="owner_site" />
<result property="bizSite" column="biz_site" />
<result property="bizSiteName" column="biz_site_name" />
<result property="country" column="country" />
<result property="province" column="province" />
<result property="city" column="city" />