diff --git a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCustomerUser.java b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCustomerUser.java
index f05f60df3..b03917542 100644
--- a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCustomerUser.java
+++ b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCustomerUser.java
@@ -1,10 +1,10 @@
-/**
+/**
* @Project: emis
* @Title: EmisCustomerUser.java
* @author linfso
- * @date 2024-03-01 03:51:54
+ * @date 2024-03-07 11:18:02
* @Copyright: ShangHai Duta 2022 All rights reserved.
- * @version v1.0
+ * @version v1.0
* @Description:
快递客户用户 实体类
*/
@@ -17,6 +17,7 @@ import com.xdadan.erp.common.annotation.Excel;
import com.xdadan.erp.common.core.domain.BaseEntity;
import com.xdadan.erp.common.core.domain.TreeEntity;
import java.io.Serializable;
+import java.math.BigDecimal;
import java.util.Date;
import lombok.Data;
@@ -25,9 +26,9 @@ import lombok.Data;
* @ClassName EmisCustomerUser
* @Description 快递客户用户
* @author linfso
- * @date 2024-03-01 03:51:54
+ * @date 2024-03-07 11:18:02
*/
- @Data
+@Data
public class EmisCustomerUser extends BaseEntity
{
private static final long serialVersionUID = 1L;
@@ -35,25 +36,29 @@ public class EmisCustomerUser extends BaseEntity
/* id */
private Long id;
/* 客户编码 */
- private String code;
+ private String customerCode;
/* 客户名称 */
private String shortName;
/* 英文简称 */
- private String nameEn;
+ private String customerNameEn;
+ /* 全名 */
+ private String customerFullName;
/* 客户类型 1-普通客户 2-月结客户 */
private String customerType;
+ /* 用户类型 1-个人 2-公司 */
+ private String userType;
+ /* 所属公司 */
+ private String company;
/* 部门id */
private String deptId;
+ /* 手机号 */
+ private String mobile;
/* 电话 */
private String phone;
- /* 寄件人 */
- private String customerFullName;
/* 头像 */
private String avatar;
/* 性别 */
private String sex;
- /* 所属公司 */
- private String company;
/* 邀请人 */
private String invitationInfo;
/* 最后登录ip */
diff --git a/emis-biz/src/main/resources/mapper/EmisCustomerUserMapper.xml b/emis-biz/src/main/resources/mapper/EmisCustomerUserMapper.xml
index b8b30c252..9cfa64bb3 100644
--- a/emis-biz/src/main/resources/mapper/EmisCustomerUserMapper.xml
+++ b/emis-biz/src/main/resources/mapper/EmisCustomerUserMapper.xml
@@ -1,21 +1,23 @@
+ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-
+
-
+
-
-
-
-
+
+
+
+
+
+
+
-
@@ -69,23 +71,25 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select id, code, short_name, name_en, customer_type, dept_id, phone, customer_full_name, avatar, sex, company, invitation_info, login_ip, login_date, nick_name, union_id, openid, monthly_pay_code, user_name, password, owner_site, site_code, balance_mode, linkman, fax, address, email, country, province, city, district, town, send_country, send_province, send_district, send_town, post_code, status, real_name, id_no, payee, salesmen, create_man, create_site, create_site_code, modify_site_code, bl_open_oms, bl_sms, operation_employee, operation_employee_code, create_man_code, modifier, modifier_code, modify_site, order_num, remark, del_flag, create_by, create_time, update_by, update_time from emis_customer_user
+ select id, customer_code, short_name, customer_name_en, customer_full_name, customer_type, user_type, company, dept_id, mobile, phone, avatar, sex, invitation_info, login_ip, login_date, nick_name, union_id, openid, monthly_pay_code, user_name, password, owner_site, site_code, balance_mode, linkman, fax, address, email, country, province, city, district, town, send_country, send_province, send_district, send_town, post_code, status, real_name, id_no, payee, salesmen, create_man, create_site, create_site_code, modify_site_code, bl_open_oms, bl_sms, operation_employee, operation_employee_code, create_man_code, modifier, modifier_code, modify_site, order_num, remark, del_flag, create_by, create_time, update_by, update_time from emis_customer_user
-
+
-
+
insert into emis_customer_user
id,
- code,
+ customer_code,
short_name,
- name_en,
- customer_type,
- dept_id,
- phone,
+ customer_name_en,
customer_full_name,
+ customer_type,
+ user_type,
+ company,
+ dept_id,
+ mobile,
+ phone,
avatar,
sex,
- company,
invitation_info,
login_ip,
login_date,
@@ -210,19 +216,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
create_time,
update_by,
update_time,
-
+
#{id},
- #{code},
+ #{customerCode},
#{shortName},
- #{nameEn},
- #{customerType},
- #{deptId},
- #{phone},
+ #{customerNameEn},
#{customerFullName},
+ #{customerType},
+ #{userType},
+ #{company},
+ #{deptId},
+ #{mobile},
+ #{phone},
#{avatar},
#{sex},
- #{company},
#{invitationInfo},
#{loginIp},
#{loginDate},
@@ -273,22 +281,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{createTime},
#{updateBy},
#{updateTime},
-
+
update emis_customer_user
- code = #{code},
+ customer_code = #{customerCode},
short_name = #{shortName},
- name_en = #{nameEn},
- customer_type = #{customerType},
- dept_id = #{deptId},
- phone = #{phone},
+ customer_name_en = #{customerNameEn},
customer_full_name = #{customerFullName},
+ customer_type = #{customerType},
+ user_type = #{userType},
+ company = #{company},
+ dept_id = #{deptId},
+ mobile = #{mobile},
+ phone = #{phone},
avatar = #{avatar},
sex = #{sex},
- company = #{company},
invitation_info = #{invitationInfo},
login_ip = #{loginIp},
login_date = #{loginDate},
@@ -348,7 +358,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- delete from emis_customer_user where id in
+ delete from emis_customer_user where id in
#{id}