Commit 784a39ed authored by hongguangwu's avatar hongguangwu

1.7.22-微信号

parent d38f39df
...@@ -571,6 +571,13 @@ public class TEmployeeInfo extends BaseEntity { ...@@ -571,6 +571,13 @@ public class TEmployeeInfo extends BaseEntity {
@Schema(description ="是否有职业资格证书:0 是 1 否") @Schema(description ="是否有职业资格证书:0 是 1 否")
private String haveQualification; private String haveQualification;
// 1.7.22版本新增字段
@ExcelAttribute(name = "微信号", maxLength = 50)
@Length(max = 50, message = "微信号不能超过50个字符")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("微信号")
private String weChatId;
/** /**
* 其他附件--C段二维码扫码数据 * 其他附件--C段二维码扫码数据
*/ */
......
...@@ -518,4 +518,11 @@ public class TPreEmployeeInfo extends BaseEntity { ...@@ -518,4 +518,11 @@ public class TPreEmployeeInfo extends BaseEntity {
@Schema(description ="是否有职业资格证书:0 是 1 否") @Schema(description ="是否有职业资格证书:0 是 1 否")
private String haveQualification; private String haveQualification;
// 1.7.22版本新增字段
@ExcelAttribute(name = "微信号", maxLength = 50)
@Length(max = 50, message = "微信号不能超过50个字符")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("微信号")
private String weChatId;
} }
...@@ -8,6 +8,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute; ...@@ -8,6 +8,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute;
import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex; import com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.Size; import javax.validation.constraints.Size;
import java.io.Serializable; import java.io.Serializable;
...@@ -245,6 +246,13 @@ public class EmployeeInsertVO extends RowIndex implements Serializable { ...@@ -245,6 +246,13 @@ public class EmployeeInsertVO extends RowIndex implements Serializable {
@ExcelProperty(value = "通信地址-详细地址") @ExcelProperty(value = "通信地址-详细地址")
private String contactAddress; private String contactAddress;
// 1.7.22版本新增字段
@ExcelAttribute(name = "微信号", maxLength = 50)
@Length(max = 50, message = "微信号不能超过50个字符")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("微信号")
private String weChatId;
/* /*
// 紧急联系人姓名 与本人关系 联系地址-省 联系地址-市 联系地址-区/县 联系地址-详细地址 手机号码(紧急联系人) // 紧急联系人姓名 与本人关系 联系地址-省 联系地址-市 联系地址-区/县 联系地址-详细地址 手机号码(紧急联系人)
@ExcelAttribute(name = "紧急联系人姓名", isNotEmpty = true, errorInfo = "紧急联系人姓名不能为空", maxLength = 20) @ExcelAttribute(name = "紧急联系人姓名", isNotEmpty = true, errorInfo = "紧急联系人姓名不能为空", maxLength = 20)
......
...@@ -56,6 +56,9 @@ public class PreUploadEmpImportVo implements Serializable { ...@@ -56,6 +56,9 @@ public class PreUploadEmpImportVo implements Serializable {
private String empPhone; private String empPhone;
@ExcelAttribute(name = "邮箱", maxLength = 50) @ExcelAttribute(name = "邮箱", maxLength = 50)
private String empEmail; private String empEmail;
// 1.7.22版本新增字段
@ExcelAttribute(name = "微信号", maxLength = 50)
private String weChatId;
// 区域ID // 区域ID
@ExcelAttribute(name = "户籍所在地-省", isArea = true) @ExcelAttribute(name = "户籍所在地-省", isArea = true)
private String idProvince; private String idProvince;
......
...@@ -9,6 +9,7 @@ public class EmployeeConstants { ...@@ -9,6 +9,7 @@ public class EmployeeConstants {
public static final String REMARL_LENGTH = "备注长度超过200"; public static final String REMARL_LENGTH = "备注长度超过200";
public static final String POST_LENGTH = "就职岗位长度超过20"; public static final String POST_LENGTH = "就职岗位长度超过20";
public static final String DEPT_NO_LENGTH = "项目编码长度超过20"; public static final String DEPT_NO_LENGTH = "项目编码长度超过20";
public static final String WE_CHAT_ID_NO_LENGTH = "微信号长度超过50";
public static final String VALIDITY_START = "身份证开始日期必填"; public static final String VALIDITY_START = "身份证开始日期必填";
public static final String VALIDITY_END = "身份证截止日期必填"; public static final String VALIDITY_END = "身份证截止日期必填";
public static final String VALIDITY_END_FORMAT = "身份证截止日期只能为日期格式:yyyy-MM-dd或者固定值:长期"; public static final String VALIDITY_END_FORMAT = "身份证截止日期只能为日期格式:yyyy-MM-dd或者固定值:长期";
......
...@@ -1711,6 +1711,13 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -1711,6 +1711,13 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
saveEmp.setDeptNo(excel.getDeptNo()); saveEmp.setDeptNo(excel.getDeptNo());
} }
} }
if (Common.isNotNull(excel.getWeChatId())) {
if (excel.getWeChatId().length() > 50) {
errorMsg.add(EmployeeConstants.WE_CHAT_ID_NO_LENGTH);
} else {
saveEmp.setWeChatId(excel.getWeChatId());
}
}
this.setBaseData(saveEmp, CommonConstants.dingleDigitStrArray[5], user); this.setBaseData(saveEmp, CommonConstants.dingleDigitStrArray[5], user);
saveList.add(saveEmp); saveList.add(saveEmp);
} }
...@@ -2277,6 +2284,13 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -2277,6 +2284,13 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
saveEmp.setDeptNo(excel.getDeptNo()); saveEmp.setDeptNo(excel.getDeptNo());
} }
} }
if (Common.isNotNull(excel.getWeChatId())) {
if (excel.getWeChatId().length() > 50) {
errorMsg.add(EmployeeConstants.WE_CHAT_ID_NO_LENGTH);
} else {
saveEmp.setWeChatId(excel.getWeChatId());
}
}
// 判断空值 // 判断空值
//this.judgeNull(errorMsg, saveEmp); //this.judgeNull(errorMsg, saveEmp);
......
...@@ -278,6 +278,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -278,6 +278,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
newEmp.setCreateBy(user.getId()); newEmp.setCreateBy(user.getId());
newEmp.setCreateName(user.getNickname()); newEmp.setCreateName(user.getNickname());
newEmp.setCreateTime(LocalDateTime.now()); newEmp.setCreateTime(LocalDateTime.now());
newEmp.setWeChatId(emp.getWeChatId());
tPreEmployeeInfoService.save(newEmp); tPreEmployeeInfoService.save(newEmp);
vo.setTpreEmployeeInfo(newEmp); vo.setTpreEmployeeInfo(newEmp);
// 全部保留 // 全部保留
...@@ -3554,7 +3555,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -3554,7 +3555,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
return R.failed(voR == null ? "预入职导入识别表格异常!" : voR.getMsg()); return R.failed(voR == null ? "预入职导入识别表格异常!" : voR.getMsg());
} }
String[] modelTitle = {"员工类型", "员工姓名", "身份证号", "身份证开始日期", "身份证截止日期", "婚姻状况", "民族" String[] modelTitle = {"员工类型", "员工姓名", "身份证号", "身份证开始日期", "身份证截止日期", "婚姻状况", "民族"
, "政治面貌", "手机号码", "邮箱", "户籍所在地-省", "户籍所在地-市", "户籍所在地-区/县", "户口性质", "档案所在地-省" , "政治面貌", "手机号码", "邮箱", "微信号", "户籍所在地-省", "户籍所在地-市", "户籍所在地-区/县", "户口性质", "档案所在地-省"
, "档案所在地-市", "档案所在地-区/县", "通信地址-省", "通信地址-市", "通信地址-区/县", "通信地址-详细地址" , "档案所在地-市", "档案所在地-区/县", "通信地址-省", "通信地址-市", "通信地址-区/县", "通信地址-详细地址"
, "紧急联系人姓名", "紧急联系人与本人关系", "联系地址-省", "联系地址-市", "联系地址-区/县", "联系地址-详细地址" , "紧急联系人姓名", "紧急联系人与本人关系", "联系地址-省", "联系地址-市", "联系地址-区/县", "联系地址-详细地址"
, "手机号码(紧急联系人)", "学历", "学校", "专业", "教育开始时间", "教育结束时间", "是否为首份工作", "工作单位" , "手机号码(紧急联系人)", "学历", "学校", "专业", "教育开始时间", "教育结束时间", "是否为首份工作", "工作单位"
...@@ -4136,6 +4137,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -4136,6 +4137,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmployeeInfo.setEmpNational(info.getEmpNationalValue()); tPreEmployeeInfo.setEmpNational(info.getEmpNationalValue());
tPreEmployeeInfo.setPoliticalStatus(info.getPoliticalStatusValue()); tPreEmployeeInfo.setPoliticalStatus(info.getPoliticalStatusValue());
tPreEmployeeInfo.setEmpEmail(info.getEmpEmail()); tPreEmployeeInfo.setEmpEmail(info.getEmpEmail());
tPreEmployeeInfo.setWeChatId(info.getWeChatId());
tPreEmployeeInfo.setEmpPhone(info.getEmpPhone()); tPreEmployeeInfo.setEmpPhone(info.getEmpPhone());
// 2024-10-30 20:02:53 测试jld认为如果没写户籍省,则带出档案。我认为有道理 // 2024-10-30 20:02:53 测试jld认为如果没写户籍省,则带出档案。我认为有道理
if (Common.isNotNull(info.getIdProvinceValue())) { if (Common.isNotNull(info.getIdProvinceValue())) {
......
...@@ -88,6 +88,7 @@ ...@@ -88,6 +88,7 @@
<result property="contactProvince" column="CONTACT_PROVINCE"/> <result property="contactProvince" column="CONTACT_PROVINCE"/>
<result property="contactCity" column="CONTACT_CITY"/> <result property="contactCity" column="CONTACT_CITY"/>
<result property="contactTown" column="CONTACT_TOWN"/> <result property="contactTown" column="CONTACT_TOWN"/>
<result property="weChatId" column="WE_CHAT_ID"/>
</resultMap> </resultMap>
...@@ -264,7 +265,8 @@ ...@@ -264,7 +265,8 @@
a.TAX_MONTH, a.TAX_MONTH,
a.CONTACT_PROVINCE, a.CONTACT_PROVINCE,
a.CONTACT_CITY, a.CONTACT_CITY,
a.CONTACT_TOWN a.CONTACT_TOWN,
a.WE_CHAT_ID
</sql> </sql>
<sql id="Base_Export_List"> <sql id="Base_Export_List">
......
...@@ -90,6 +90,7 @@ ...@@ -90,6 +90,7 @@
<result property="contactCity" column="CONTACT_CITY"/> <result property="contactCity" column="CONTACT_CITY"/>
<result property="contactTown" column="CONTACT_TOWN"/> <result property="contactTown" column="CONTACT_TOWN"/>
<result property="taxMonthFlag" column="TAX_MONTH_FLAG"/> <result property="taxMonthFlag" column="TAX_MONTH_FLAG"/>
<result property="weChatId" column="WE_CHAT_ID"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
...@@ -158,7 +159,8 @@ ...@@ -158,7 +159,8 @@
a.CONTACT_PROVINCE, a.CONTACT_PROVINCE,
a.CONTACT_CITY, a.CONTACT_CITY,
a.CONTACT_TOWN, a.CONTACT_TOWN,
a.TAX_MONTH_FLAG a.TAX_MONTH_FLAG,
a.WE_CHAT_ID
</sql> </sql>
<sql id="tPreEmployeeInfo_where"> <sql id="tPreEmployeeInfo_where">
<if test="tPreEmployeeInfo != null"> <if test="tPreEmployeeInfo != null">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment