用户:Z_NWA_USER 往 USR表导数据的listenr监听器提交

赵嘉伟 4 years ago
parent 6112e89710
commit b443996fdc

@ -0,0 +1,155 @@
package com.foreverwin.mesnac.listener.listener;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.service.SysUserService;
import com.foreverwin.mesnac.listener.util.ConstantsUtil;
import com.sap.security.api.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.time.LocalDateTime;
import java.util.UUID;
@Service
public class NwaPrincipaListener implements PrincipalListener {
private final Logger logger = LoggerFactory.getLogger(NwaPrincipaListener.class);
@Autowired
SysUserService sysUserService;
@Override
public void objectAdded(String s) throws UMException {
logger.info("objectAdded: " + s);
LocalDateTime now = LocalDateTime.now();
//----------------------------------------------------------------------------------------------------------------------------
// 创建用户
if(s.startsWith(ConstantsUtil.NWA_USER_ID_PREFIX)) {
IUser user = UMFactory.getUserFactory().getUser(s);
if (StringUtils.isEmpty(user.getFirstName()) && StringUtils.isEmpty(user.getLastName())) return;
String fullName = user.getLastName();
if (!StringUtils.isEmpty(user.getFirstName())) fullName = fullName + user.getFirstName();
//----------------------------------------------------------------------------------------------------------------------------
//获取默认站点
String[] sites = user.getAttribute("SAPME", "DEFAULT SITE");
String site = sites != null && sites.length > 0 ? sites[0] : null;
//获取部门信息
String departmentInfo = user.getDepartment();
String department = null;
String departmentDescription = null;
if(departmentInfo != null){
department = departmentInfo.split("/").length > 0 ? departmentInfo.split("/")[0] : "";
departmentDescription = departmentInfo.split("/").length > 1 ? departmentInfo.split("/")[1] : "";
}
String upperUserName = user.getName().toUpperCase();
SysUser entity = sysUserService.selectOne(upperUserName);
if (entity == null) {
entity = new SysUser();
entity.setHandle(UUID.randomUUID().toString());
entity.setUserName(upperUserName);
entity.setCreateTime(now);
}//if
//----------------------------------------------------------------------------------------------------------------------------
entity.setSite(site);
entity.setFirstName(user.getFirstName());
entity.setLastName(user.getLastName());
entity.setFullName(fullName);
entity.setPhone(user.getTelephone());
entity.setDeptId(department);
entity.setDeptDesc(departmentDescription);
entity.setJobTitle(user.getJobTitle());
entity.setEmail(user.getEmail());
entity.setUpdateTime(now);
entity.setLockFlag(ConstantsUtil.N);
entity.setDelFlag(ConstantsUtil.N);
//----------------------------------------------------------------------------------------------------------------------------
sysUserService.saveOrUpdate(entity);
// 创建用户账号,修改锁定状态
} else if(s.startsWith(ConstantsUtil.NWA_USER_ACCOUNT_ID_PREFIX)) {
IUserAccount user = UMFactory.getUserAccountFactory().getUserAccount(s);
SysUser entity = sysUserService.selectOne(user.getLogonUid());
if (entity != null) {
entity.setLockFlag(user.isUserAccountLocked() ? ConstantsUtil.Y : ConstantsUtil.N);
entity.setUpdateTime(now);
//----------------------------------------------------------------------------------------------------------------------------
sysUserService.saveOrUpdate(entity);
}
}
}
@Override
public void objectRemoved(String s) throws UMException {
logger.info("objectRemoved: " + s);
}
@Override
public void objectEdited(String s) throws UMException {
logger.info("objectEdited: " + s);
LocalDateTime now = LocalDateTime.now();
//----------------------------------------------------------------------------------------------------------------------------
if (s.startsWith(ConstantsUtil.NWA_USER_ID_PREFIX)) {
IUser user = UMFactory.getUserFactory().getUser(s);
String fullName = user.getLastName();
if (!StringUtils.isEmpty(user.getFirstName())) fullName = fullName + user.getFirstName();
//----------------------------------------------------------------------------------------------------------------------------
//获取默认站点
String[] sites = user.getAttribute("SAPME", "DEFAULT SITE");
String site = sites != null && sites.length > 0 ? sites[0] : null;
//获取部门信息
String departmentInfo = user.getDepartment();
String department = null;
String departmentDescription = null;
if(departmentInfo != null){
department = departmentInfo.split("/").length > 0 ? departmentInfo.split("/")[0] : "";
departmentDescription = departmentInfo.split("/").length > 1 ? departmentInfo.split("/")[1] : "";
}
String upperUserName = user.getName().toUpperCase();
SysUser entity = sysUserService.selectOne(upperUserName);
if (entity != null) {
entity.setSite(site);
entity.setFirstName(user.getFirstName());
entity.setLastName(user.getLastName());
entity.setFullName(fullName);
entity.setPhone(user.getTelephone());
entity.setDeptId(department);
entity.setDeptDesc(departmentDescription);
entity.setJobTitle(user.getJobTitle());
entity.setEmail(user.getEmail());
entity.setUpdateTime(now);
//----------------------------------------------------------------------------------------------------------------------------
sysUserService.saveOrUpdate(entity);
}
} else if (s.startsWith(ConstantsUtil.NWA_USER_ACCOUNT_ID_PREFIX)) {
IUserAccount userAccount = UMFactory.getUserAccountFactory().getUserAccount(s);
if (userAccount != null) {
SysUser entity = sysUserService.selectOne(userAccount.getLogonUid());
if (entity != null) {
if(userAccount.getValidFromDate() != null){
entity.setValidFrom(DateUtil.toLocalDateTime(userAccount.getValidFromDate()).toLocalDate());
}
if(userAccount.getValidToDate() != null){
entity.setValidTo(DateUtil.toLocalDateTime(userAccount.getValidToDate()).toLocalDate());
}
Boolean locked = userAccount.isUserAccountLocked();
entity.setLockFlag(locked != null && locked ? ConstantsUtil.Y : ConstantsUtil.N);
//----------------------------------------------------------------------------------------------------------------------------
sysUserService.saveOrUpdate(entity);
}
}
}
}
@Override
public void objectAssigned(String s, String s1) throws UMException {
logger.info("objectAssigned: " + s);
}
@Override
public void objectUnAssigned(String s, String s1) throws UMException {
logger.info("objectUnAssigned: " + s);
}
}

@ -0,0 +1,38 @@
package com.foreverwin.mesnac.listener.listener;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.service.SysUserService;
import com.sap.security.api.UMException;
import com.sap.security.api.UserListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class NwaUserListener implements UserListener {
private final Logger logger = LoggerFactory.getLogger(NwaUserListener.class);
@Autowired
SysUserService sysUserService;
@Override
public void userAdded(String s) throws UMException {
}
@Override
public void userRemoved(String s) throws UMException {
logger.info("user remove start: " + s);
//---------------------------------------------------------------------------------------------------------------------------
String userName = s.substring(s.indexOf(":") + 1);
String upperUserName = userName.toUpperCase();
SysUser entity = sysUserService.selectOne(upperUserName);
if (entity == null) return;
//---------------------------------------------------------------------------------------------------------------------------
sysUserService.removeById(entity.getHandle());
//---------------------------------------------------------------------------------------------------------------------------
logger.info("user remove complete: " + s);
}
}

@ -0,0 +1,114 @@
package com.foreverwin.mesnac.listener.listener;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.service.SysUserService;
import com.foreverwin.mesnac.listener.util.ConstantsUtil;
import com.sap.security.api.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;
import java.time.LocalDateTime;
import java.util.UUID;
@Component
public class StartListener implements ApplicationListener<ApplicationReadyEvent> {
private final Logger logger = LoggerFactory.getLogger(StartListener.class);
@Autowired
NwaUserListener nwaUserListener;
@Autowired
NwaPrincipaListener nwaPrincipaListener;
@Autowired
SysUserService sysUserService;
@Override
public void onApplicationEvent(ApplicationReadyEvent applicationReadyEvent) {
try {
IUserFactory userFactory = UMFactory.getUserFactory();
IPrincipalFactory principalFactory = UMFactory.getPrincipalFactory();
//---------------------------------------------------------------------------------------------------------------------------
userFactory.registerListener(nwaUserListener, UserListener.INFORM_ON_USER_ADDED);// 注册新增用户监听
userFactory.registerListener(nwaUserListener, UserListener.INFORM_ON_USER_REMOVED);// 注册删除用户监听
//---------------------------------------------------------------------------------------------------------------------------
principalFactory.registerListener(nwaPrincipaListener, NwaPrincipaListener.INFORM_ON_OBJECT_ADDED);
principalFactory.registerListener(nwaPrincipaListener, NwaPrincipaListener.INFORM_ON_OBJECT_ASSIGNED);
principalFactory.registerListener(nwaPrincipaListener, NwaPrincipaListener.INFORM_ON_OBJECT_EDITED);
principalFactory.registerListener(nwaPrincipaListener, NwaPrincipaListener.INFORM_ON_OBJECT_REMOVED);
principalFactory.registerListener(nwaPrincipaListener, NwaPrincipaListener.INFORM_ON_OBJECT_UNASSIGNED);
//---------------------------------------------------------------------------------------------------------------------------
initUser();
} catch (Exception e) {
logger.error("", e.getMessage());
}
}
private void initUser() {
new Thread(() -> {
try {
LocalDateTime now = LocalDateTime.now();
IUserFactory userFactory = UMFactory.getUserFactory();
ISearchResult searchResult = userFactory.searchUsers(userFactory.getUserSearchFilter());
if (searchResult == null) return;
//---------------------------------------------------------------------------------------------------------------------------
while (searchResult.hasNext()) {
String userId = (String)searchResult.next();
IUser user = userFactory.getUser(userId);
IUserAccount userAccount = UMFactory.getUserAccountFactory().getUserAccount(ConstantsUtil.NWA_USER_ACCOUNT_ID_PREFIX + user.getName());
if (StringUtils.isEmpty(user.getFirstName()) && StringUtils.isEmpty(user.getLastName())) continue;
String fullName = user.getLastName();
if (!StringUtils.isEmpty(user.getFirstName())) fullName = fullName + user.getFirstName();
//---------------------------------------------------------------------------------------------------------------------------
String upperUserName = user.getName().toUpperCase();
String departmentInfo = user.getDepartment();
String department = null;
String departmentDescription = null;
if(departmentInfo != null){
department = departmentInfo.split("/").length > 0 ? departmentInfo.split("/")[0] : "";
departmentDescription = departmentInfo.split("/").length > 1 ? departmentInfo.split("/")[1] : "";
}
String[] sites = user.getAttribute("SAPME", "DEFAULT SITE");
String site = sites != null && sites.length > 0 ? sites[0] : null;
SysUser entity = sysUserService.selectOne(upperUserName);
if (entity == null) {
entity = new SysUser();
entity.setHandle(UUID.randomUUID().toString());
entity.setUserName(upperUserName);
entity.setCreateTime(now);
entity.setDelFlag(ConstantsUtil.N);
}//if
//---------------------------------------------------------------------------------------------------------------------------
entity.setSite(site);
entity.setFirstName(user.getFirstName());
entity.setLastName(user.getLastName());
entity.setFullName(fullName);
entity.setPhone(user.getCellPhone());
entity.setDeptId(department);
entity.setDeptDesc(departmentDescription);
entity.setJobTitle(user.getJobTitle());
entity.setEmail(user.getEmail());
if(userAccount.getValidFromDate() != null){
entity.setValidFrom(DateUtil.toLocalDateTime(userAccount.getValidFromDate()).toLocalDate());
}
if(userAccount.getValidToDate() != null){
entity.setValidTo(DateUtil.toLocalDateTime(userAccount.getValidToDate()).toLocalDate());
}
entity.setUpdateTime(now);
entity.setLockFlag(userAccount.isUserAccountLocked() ? ConstantsUtil.Y : ConstantsUtil.N);
//---------------------------------------------------------------------------------------------------------------------------
sysUserService.saveOrUpdate(entity);
}//while
//---------------------------------------------------------------------------------------------------------------------------
// 删除NWA没有的数据
//sysUserService.remove(Wrappers.<SysUser>lambdaQuery().lt(SysUser::getUpdateTime, now));
} catch (Exception e) {
logger.error("", e.getMessage());
}
}).start();
}
}

@ -0,0 +1,27 @@
package com.foreverwin.mesnac.listener.listener;
import com.sap.security.api.PrincipalListener;
import com.sap.security.api.UMFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextClosedEvent;
import org.springframework.stereotype.Component;
@Component
public class StopListener implements ApplicationListener<ContextClosedEvent> {
@Autowired
NwaUserListener nwaUserListener;
@Autowired
PrincipalListener principalListener;
@Override
public void onApplicationEvent(ContextClosedEvent contextClosedEvent) {
try {
UMFactory.getUserFactory().unregisterListener(nwaUserListener);
UMFactory.getPrincipalFactory().unregisterListener(principalListener);
} catch (Exception e) {
e.printStackTrace();
}
}
}

@ -0,0 +1,16 @@
package com.foreverwin.mesnac.listener.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.foreverwin.mesnac.listener.model.SysUser;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface SysUserMapper extends BaseMapper<SysUser> {
SysUser getById(@Param("site") String site, @Param("userName") String engineerQa);
List<SysUser> selectListForPd(@Param("site") String site);
}

@ -0,0 +1,40 @@
package com.foreverwin.mesnac.listener.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.foreverwin.mesnac.listener.model.UserSchedule;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* Mapper
* </p>
*
* @author xqy
* @since 2020-11-09
*/
@Repository
public interface UserScheduleMapper extends BaseMapper<UserSchedule> {
/**
* -
*
* @param site
* @param wcBo
* @param user
* @return
*/
List<UserSchedule> getInfoByUserOrWc(@Param("site") String site, @Param("wcBo") String wcBo, @Param("user") String user, @Param("scheduleStDt") String scheduleStDt, @Param("scheduleEdDt") String scheduleEdDt);
/**
* -MES-187RULE_01
*
* @param activityBo
* @return
*/
UserSchedule getActivityRule(@Param("activityBo") String activityBo);
List<UserSchedule>getShiftMappingGyAndMe(@Param("site") String site);
}

@ -0,0 +1,24 @@
package com.foreverwin.mesnac.listener.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.model.Usr;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* Mapper
* </p>
*
* @author sungang
* @since 2020-10-16
*/
@Repository
public interface UsrMapper extends BaseMapper<Usr> {
List<SysUser> selectListForPd(@Param("site") String site);
/*List<Usr> userList(Usr user);*/
}

@ -0,0 +1,300 @@
package com.foreverwin.mesnac.listener.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author Ervin Chen
* @since 2020-12-12
*/
@TableName("Z_NWA_USER")
public class SysUser extends Model<SysUser> {
private static final long serialVersionUID = 1L;
@TableId(value = "HANDLE", type = IdType.INPUT)
private String handle;
@TableField("USER_NAME")
private String userName;
@TableField("FIRST_NAME")
private String firstName;
@TableField("LAST_NAME")
private String lastName;
@TableField("FULL_NAME")
private String fullName;
@TableField("PASSWORD")
private String password;
@TableField("SALT")
private String salt;
@TableField("PHONE")
private String phone;
@TableField("AVATAR")
private String avatar;
@TableField("DEPT_ID")
private String deptId;
@TableField("CREATE_TIME")
private LocalDateTime createTime;
@TableField("UPDATE_TIME")
private LocalDateTime updateTime;
@TableField("LOCK_FLAG")
private String lockFlag;
@TableField("DEL_FLAG")
private String delFlag;
@TableField("SITE")
private String site;
@TableField("DEPT_DESC")
private String deptDesc;
@TableField("VALID_FROM")
private LocalDate validFrom;
@TableField("VALID_TO")
private LocalDate validTo;
@TableField("JOB_TITLE")
private String jobTitle;
@TableField("EMAIL")
private String email;
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getSalt() {
return salt;
}
public void setSalt(String salt) {
this.salt = salt;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getAvatar() {
return avatar;
}
public void setAvatar(String avatar) {
this.avatar = avatar;
}
public String getDeptId() {
return deptId;
}
public void setDeptId(String deptId) {
this.deptId = deptId;
}
public LocalDateTime getCreateTime() {
return createTime;
}
public void setCreateTime(LocalDateTime createTime) {
this.createTime = createTime;
}
public LocalDateTime getUpdateTime() {
return updateTime;
}
public void setUpdateTime(LocalDateTime updateTime) {
this.updateTime = updateTime;
}
public String getLockFlag() {
return lockFlag;
}
public void setLockFlag(String lockFlag) {
this.lockFlag = lockFlag;
}
public String getDelFlag() {
return delFlag;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getDeptDesc() {
return deptDesc;
}
public void setDeptDesc(String deptDesc) {
this.deptDesc = deptDesc;
}
public LocalDate getValidFrom() {
return validFrom;
}
public void setValidFrom(LocalDate validFrom) {
this.validFrom = validFrom;
}
public LocalDate getValidTo() {
return validTo;
}
public void setValidTo(LocalDate validTo) {
this.validTo = validTo;
}
public String getJobTitle() {
return jobTitle;
}
public void setJobTitle(String jobTitle) {
this.jobTitle = jobTitle;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public static final String HANDLE = "HANDLE";
public static final String USER_NAME = "USER_NAME";
public static final String FIRST_NAME = "FIRST_NAME";
public static final String LAST_NAME = "LAST_NAME";
public static final String FULL_NAME = "FULL_NAME";
public static final String PASSWORD = "PASSWORD";
public static final String SALT = "SALT";
public static final String PHONE = "PHONE";
public static final String AVATAR = "AVATAR";
public static final String DEPT_ID = "DEPT_ID";
public static final String CREATE_TIME = "CREATE_TIME";
public static final String UPDATE_TIME = "UPDATE_TIME";
public static final String LOCK_FLAG = "LOCK_FLAG";
public static final String DEL_FLAG = "DEL_FLAG";
public static final String SITE = "SITE";
public static final String DEPT_DESC = "DEPT_DESC";
public static final String VALID_FROM = "VALID_FROM";
public static final String VALID_TO = "VALID_TO";
public static final String JOB_TITLE = "JOB_TITLE";
public static final String EMAIL = "EMAIL";
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "SysUser{" +
"handle = " + handle +
", userName = " + userName +
", firstName = " + firstName +
", lastName = " + lastName +
", fullName = " + fullName +
", password = " + password +
", salt = " + salt +
", phone = " + phone +
", avatar = " + avatar +
", deptId = " + deptId +
", createTime = " + createTime +
", updateTime = " + updateTime +
", lockFlag = " + lockFlag +
", delFlag = " + delFlag +
", site = " + site +
", deptDesc = " + deptDesc +
", validFrom = " + validFrom +
", validTo = " + validTo +
", jobTitle = " + jobTitle +
", email = " + email +
"}";
}
}

@ -0,0 +1,377 @@
package com.foreverwin.mesnac.listener.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.foreverwin.modular.core.util.I18nUtil;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author xqy
* @since 2020-11-09
*/
@TableName("Z_USER_SCHEDULE")
public class UserSchedule extends Model<UserSchedule> {
private static final long serialVersionUID = 1L;
@TableId(value = "HANDLE", type = IdType.INPUT)
private String handle;
@TableField("SITE")
private String site;
@TableField("USER_NAME")
private String userName;
@TableField("SCHEDULE_DATE")
private String scheduleDate;
@TableField("TYPE")
private String type;
@TableField("SCHEDULE_START_TIME")
private String scheduleStartTime;
@TableField("SCHEDULE_END_TIME")
private String scheduleEndTime;
@TableField("REMARK")
private String remark;
@TableField("CREATED_DATE_TIME")
private LocalDateTime createdDateTime;
@TableField("UPDATED_DATE_TIME")
private LocalDateTime updatedDateTime;
@TableField("CREATE_USER_BO")
private String createUserBo;
@TableField("UPDATE_USER_BO")
private String updateUserBo;
/**
*
*/
@TableField("WEEK")
private String week;
/**
*
*/
@TableField("SHIFT")
private String shift;
// 班课ID
@TableField(exist = false)
private String wc;
// 班课描述
@TableField(exist = false)
private String wcName;
// 用户名称
@TableField(exist = false)
private String userFullName;
// 作业规则值
@TableField(exist = false)
private String activityValue;
// 班次描述
@TableField(exist = false)
private String shiftDesc;
//盖亚班次
@TableField(exist = false)
private String gyShift;
public String getGyShift() {
return gyShift;
}
public UserSchedule setGyShift(String gyShift) {
this.gyShift = gyShift;
return this;
}
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getScheduleDate() {
return scheduleDate;
}
public void setScheduleDate(String scheduleDate) {
this.scheduleDate = scheduleDate;
}
public String getType() {
return type;
}
public void setType(String type) {
if (I18nUtil.getI18nText("userSchedule.typeA").equals(type)) {
type = "A";
} else if (I18nUtil.getI18nText("userSchedule.typeB").equals(type)) {
type = "B";
} else if (I18nUtil.getI18nText("userSchedule.typeC").equals(type)) {
type = "C";
} else if (I18nUtil.getI18nText("userSchedule.typeD").equals(type)) {
type = "D";
} else if (I18nUtil.getI18nText("userSchedule.typeE").equals(type)) {
type = "E";
} else if (I18nUtil.getI18nText("userSchedule.typeF").equals(type)) {
type = "F";
} else if (I18nUtil.getI18nText("userSchedule.typeG").equals(type)) {
type = "G";
} else {
switch (type){
case "A":
type = I18nUtil.getI18nText("userSchedule.typeA");
break;
case "B":
type = I18nUtil.getI18nText("userSchedule.typeB");
break;
case "C":
type = I18nUtil.getI18nText("userSchedule.typeC");
break;
case "D":
type = I18nUtil.getI18nText("userSchedule.typeD");
break;
case "E":
type = I18nUtil.getI18nText("userSchedule.typeE");
break;
case "F":
type = I18nUtil.getI18nText("userSchedule.typeF");
break;
case "G":
type = I18nUtil.getI18nText("userSchedule.typeG");
break;
default :
type = type;
}
}
this.type = type;
}
public String getScheduleStartTime() {
return scheduleStartTime;
}
public void setScheduleStartTime(String scheduleStartTime) {
this.scheduleStartTime = scheduleStartTime;
}
public String getScheduleEndTime() {
return scheduleEndTime;
}
public void setScheduleEndTime(String scheduleEndTime) {
this.scheduleEndTime = scheduleEndTime;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public LocalDateTime getCreatedDateTime() {
return createdDateTime;
}
public void setCreatedDateTime(LocalDateTime createdDateTime) {
this.createdDateTime = createdDateTime;
}
public LocalDateTime getUpdatedDateTime() {
return updatedDateTime;
}
public void setUpdatedDateTime(LocalDateTime updatedDateTime) {
this.updatedDateTime = updatedDateTime;
}
public String getCreateUserBo() {
return createUserBo;
}
public void setCreateUserBo(String createUserBo) {
this.createUserBo = createUserBo;
}
public String getUpdateUserBo() {
return updateUserBo;
}
public void setUpdateUserBo(String updateUserBo) {
this.updateUserBo = updateUserBo;
}
public String getWc() {
return wc;
}
public void setWc(String wc) {
this.wc = wc;
}
public String getWcName() {
return wcName;
}
public void setWcName(String wcName) {
this.wcName = wcName;
}
public String getUserFullName() {
return userFullName;
}
public void setUserFullName(String userFullName) {
this.userFullName = userFullName;
}
public String getActivityValue() {
return activityValue;
}
public void setActivityValue(String activityValue) {
this.activityValue = activityValue;
}
public String getWeek() {
return week;
}
public void setWeek(String week) {
if (I18nUtil.getI18nText("userSchedule.week1").equals(week)) {
week = "1";
} else if (I18nUtil.getI18nText("userSchedule.week2").equals(week)) {
week = "2";
} else if (I18nUtil.getI18nText("userSchedule.week3").equals(week)) {
week = "3";
} else if (I18nUtil.getI18nText("userSchedule.week4").equals(week)) {
week = "4";
} else if (I18nUtil.getI18nText("userSchedule.week5").equals(week)) {
week = "5";
} else if (I18nUtil.getI18nText("userSchedule.week6").equals(week)) {
week = "6";
} else if (I18nUtil.getI18nText("userSchedule.week7").equals(week)) {
week = "7";
} else {
switch (week){
case "1":
week = I18nUtil.getI18nText("userSchedule.week1");
break;
case "2":
week = I18nUtil.getI18nText("userSchedule.week2");
break;
case "3":
week = I18nUtil.getI18nText("userSchedule.week3");
break;
case "4":
week = I18nUtil.getI18nText("userSchedule.week4");
break;
case "5":
week = I18nUtil.getI18nText("userSchedule.week5");
break;
case "6":
week = I18nUtil.getI18nText("userSchedule.week6");
break;
case "7":
week = I18nUtil.getI18nText("userSchedule.week7");
break;
default :
week = week;
}
}
this.week = week;
}
public String getShift() {
return shift;
}
public void setShift(String shift) {
this.shift = shift;
}
public String getShiftDesc() {
return shiftDesc;
}
public void setShiftDesc(String shiftDesc) {
this.shiftDesc = shiftDesc;
}
public static final String HANDLE = "HANDLE";
public static final String SITE = "SITE";
public static final String USER_NAME = "USER_NAME";
public static final String SCHEDULE_DATE = "SCHEDULE_DATE";
public static final String TYPE = "TYPE";
public static final String SCHEDULE_START_TIME = "SCHEDULE_START_TIME";
public static final String SCHEDULE_END_TIME = "SCHEDULE_END_TIME";
public static final String REMARK = "REMARK";
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
public static final String UPDATED_DATE_TIME = "UPDATED_DATE_TIME";
public static final String CREATE_USER_BO = "CREATE_USER_BO";
public static final String UPDATE_USER_BO = "UPDATE_USER_BO";
public static final String WEEK = "WEEK";
public static final String SHIFT = "SHIFT";
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "UserSchedule{" +
"handle = " + handle +
", site = " + site +
", userName = " + userName +
", scheduleDate = " + scheduleDate +
", type = " + type +
", scheduleStartTime = " + scheduleStartTime +
", scheduleEndTime = " + scheduleEndTime +
", remark = " + remark +
", createdDateTime = " + createdDateTime +
", updatedDateTime = " + updatedDateTime +
", createUserBo = " + createUserBo +
", updateUserBo = " + updateUserBo +
", week = " + week +
", shift = " + shift +
"}";
}
}

@ -0,0 +1,291 @@
package com.foreverwin.mesnac.listener.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author sungang
* @since 2020-10-16
*/
@TableName("USR")
public class Usr extends Model<Usr> {
private static final long serialVersionUID = 1L;
@TableId(value = "HANDLE", type = IdType.INPUT)
private String handle;
@TableField("CHANGE_STAMP")
private Long changeStamp;
@TableField("SITE")
private String site;
@TableField("USER_ID")
private String userId;
@TableField(exist = false)
private String fullName;
@TableField("CURRENT_OPERATION_BO")
private String currentOperationBo;
@TableField("CURRENT_RESOURCE_BO")
private String currentResourceBo;
@TableField("CREATED_DATE_TIME")
private LocalDateTime createdDateTime;
@TableField("MODIFIED_DATE_TIME")
private LocalDateTime modifiedDateTime;
@TableField("BADGE_NUMBER")
private String badgeNumber;
@TableField("EMPLOYEE_NUMBER")
private String employeeNumber;
@TableField("HIRE_DATE")
private String hireDate;
@TableField("TERMINATION_DATE")
private String terminationDate;
@TableField("ALLOW_CLOCK_IN_NON_PROD")
private String allowClockInNonProd;
@TableField("ACTION_CLOCK_OUT_SFC")
private String actionClockOutSfc;
@TableField("CLOCK_IN_OUT_RANGE")
private String clockInOutRange;
@TableField("ALLOW_SUP_TIME_EDIT_APPR")
private String allowSupTimeEditAppr;
@TableField("APPR_REQ_FOR_EXPORT")
private String apprReqForExport;
@TableField("AUTO_CLOCK_OUT")
private String autoClockOut;
@TableField("CLOCK_IN_CONTROL")
private String clockInControl;
@TableField("DEFAULT_WORK_CENTER_BO")
private String defaultWorkCenterBo;
@TableField("ERP_PERSONNEL_NUMBER")
private String erpPersonnelNumber;
@TableField("ERP_USER")
private String erpUser;
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public Long getChangeStamp() {
return changeStamp;
}
public void setChangeStamp(Long changeStamp) {
this.changeStamp = changeStamp;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getCurrentOperationBo() {
return currentOperationBo;
}
public void setCurrentOperationBo(String currentOperationBo) {
this.currentOperationBo = currentOperationBo;
}
public String getCurrentResourceBo() {
return currentResourceBo;
}
public void setCurrentResourceBo(String currentResourceBo) {
this.currentResourceBo = currentResourceBo;
}
public LocalDateTime getCreatedDateTime() {
return createdDateTime;
}
public void setCreatedDateTime(LocalDateTime createdDateTime) {
this.createdDateTime = createdDateTime;
}
public LocalDateTime getModifiedDateTime() {
return modifiedDateTime;
}
public void setModifiedDateTime(LocalDateTime modifiedDateTime) {
this.modifiedDateTime = modifiedDateTime;
}
public String getBadgeNumber() {
return badgeNumber;
}
public void setBadgeNumber(String badgeNumber) {
this.badgeNumber = badgeNumber;
}
public String getEmployeeNumber() {
return employeeNumber;
}
public void setEmployeeNumber(String employeeNumber) {
this.employeeNumber = employeeNumber;
}
public String getHireDate() {
return hireDate;
}
public void setHireDate(String hireDate) {
this.hireDate = hireDate;
}
public String getTerminationDate() {
return terminationDate;
}
public void setTerminationDate(String terminationDate) {
this.terminationDate = terminationDate;
}
public String getAllowClockInNonProd() {
return allowClockInNonProd;
}
public void setAllowClockInNonProd(String allowClockInNonProd) {
this.allowClockInNonProd = allowClockInNonProd;
}
public String getActionClockOutSfc() {
return actionClockOutSfc;
}
public void setActionClockOutSfc(String actionClockOutSfc) {
this.actionClockOutSfc = actionClockOutSfc;
}
public String getClockInOutRange() {
return clockInOutRange;
}
public void setClockInOutRange(String clockInOutRange) {
this.clockInOutRange = clockInOutRange;
}
public String getAllowSupTimeEditAppr() {
return allowSupTimeEditAppr;
}
public void setAllowSupTimeEditAppr(String allowSupTimeEditAppr) {
this.allowSupTimeEditAppr = allowSupTimeEditAppr;
}
public String getApprReqForExport() {
return apprReqForExport;
}
public void setApprReqForExport(String apprReqForExport) {
this.apprReqForExport = apprReqForExport;
}
public String getAutoClockOut() {
return autoClockOut;
}
public void setAutoClockOut(String autoClockOut) {
this.autoClockOut = autoClockOut;
}
public String getClockInControl() {
return clockInControl;
}
public void setClockInControl(String clockInControl) {
this.clockInControl = clockInControl;
}
public String getDefaultWorkCenterBo() {
return defaultWorkCenterBo;
}
public void setDefaultWorkCenterBo(String defaultWorkCenterBo) {
this.defaultWorkCenterBo = defaultWorkCenterBo;
}
public String getErpPersonnelNumber() {
return erpPersonnelNumber;
}
public void setErpPersonnelNumber(String erpPersonnelNumber) {
this.erpPersonnelNumber = erpPersonnelNumber;
}
public String getErpUser() {
return erpUser;
}
public void setErpUser(String erpUser) {
this.erpUser = erpUser;
}
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "Usr{" +
"handle = " + handle +
", changeStamp = " + changeStamp +
", site = " + site +
", userId = " + userId +
", currentOperationBo = " + currentOperationBo +
", currentResourceBo = " + currentResourceBo +
", createdDateTime = " + createdDateTime +
", modifiedDateTime = " + modifiedDateTime +
", badgeNumber = " + badgeNumber +
", employeeNumber = " + employeeNumber +
", hireDate = " + hireDate +
", terminationDate = " + terminationDate +
", allowClockInNonProd = " + allowClockInNonProd +
", actionClockOutSfc = " + actionClockOutSfc +
", clockInOutRange = " + clockInOutRange +
", allowSupTimeEditAppr = " + allowSupTimeEditAppr +
", apprReqForExport = " + apprReqForExport +
", autoClockOut = " + autoClockOut +
", clockInControl = " + clockInControl +
", defaultWorkCenterBo = " + defaultWorkCenterBo +
", erpPersonnelNumber = " + erpPersonnelNumber +
", erpUser = " + erpUser +
"}";
}
}

@ -0,0 +1,5 @@
/**
* @author Ervin Chen
* @date 2020/10/14 10:09
*/
package com.foreverwin.mesnac.listener;

@ -0,0 +1,10 @@
package com.foreverwin.mesnac.listener.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.mesnac.listener.model.SysUser;
public interface SysUserService extends IService<SysUser> {
SysUser selectOne(String userName);
SysUser getById(String site, String engineerQa);
}

@ -0,0 +1,57 @@
package com.foreverwin.mesnac.listener.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.mesnac.listener.model.UserSchedule;
import com.foreverwin.modular.core.util.FrontPage;
import java.util.List;
import java.util.Set;
/**
* <p>
*
* </p>
*
* @author xqy
* @since 2020-11-09
*/
public interface UserScheduleService extends IService<UserSchedule> {
/**
*
*
* @param frontPage
* @return
*/
IPage<UserSchedule> selectPage(FrontPage<UserSchedule> frontPage, UserSchedule userSchedule);
/**
*
*
* @param userSchedule
* @return
*/
List<UserSchedule> selectList(UserSchedule userSchedule);
/**
* -
*
* @param workCenter
* @param user
* @param scheduleStDt
* @param scheduleEdDt
* @return
*/
List<UserSchedule> getUserScheduleByUserOrWc(String site,String workCenter, String user, String scheduleStDt, String scheduleEdDt);
/**
* -MES-187RULE_01
*
* @param activityBo
* @return
*/
String getActivityRule(String activityBo);
void delAndSave(StringBuffer stringBuffer, List<UserSchedule> addList, Set<String> delList);
}

@ -0,0 +1,33 @@
package com.foreverwin.mesnac.listener.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.model.Usr;
import com.foreverwin.modular.core.util.FrontPage;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author sungang
* @since 2020-10-16
*/
public interface UsrService extends IService<Usr> {
/**
*
* @param frontPage
* @return
*/
IPage<Usr> selectPage(FrontPage<Usr> frontPage, Usr usr);
List<Usr> selectList(Usr usr);
List<SysUser> selectListForPd(String site);
/* List<Usr> userList(Usr user);*/
}

@ -0,0 +1,27 @@
package com.foreverwin.mesnac.listener.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.foreverwin.mesnac.listener.mapper.SysUserMapper;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.service.SysUserService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional(rollbackFor = Exception.class)
public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> implements SysUserService {
@Override
public SysUser selectOne(String userName)
{
LambdaQueryWrapper<SysUser> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(SysUser::getUserName, userName);
//----------------------------------------------------------------------------------------------------------------------------------
return super.getOne(queryWrapper, false);
}
@Override
public SysUser getById(String site, String engineerQa) {
return baseMapper.getById(site,engineerQa);
}
}

@ -0,0 +1,87 @@
package com.foreverwin.mesnac.listener.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.foreverwin.mesnac.listener.mapper.UserScheduleMapper;
import com.foreverwin.mesnac.listener.model.UserSchedule;
import com.foreverwin.mesnac.listener.service.UserScheduleService;
import com.foreverwin.modular.core.util.FrontPage;
import com.sap.me.plant.WorkCenterBOHandle;
import org.eclipse.jetty.util.StringUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
import java.util.Set;
/**
* <p>
*
* </p>
*
* @author xqy
* @since 2020-11-09
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class UserScheduleServiceImpl extends ServiceImpl<UserScheduleMapper, UserSchedule> implements UserScheduleService {
@Autowired
private UserScheduleMapper userScheduleMapper;
@Override
public IPage<UserSchedule> selectPage(FrontPage<UserSchedule> frontPage, UserSchedule userSchedule) {
QueryWrapper<UserSchedule> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(userSchedule);
return super.page(frontPage.getPagePlus(), queryWrapper);
}
@Override
public List<UserSchedule> selectList(UserSchedule userSchedule) {
QueryWrapper<UserSchedule> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(userSchedule);
return super.list(queryWrapper);
}
@Override
public List<UserSchedule> getUserScheduleByUserOrWc(String site, String workCenter, String user, String scheduleStDt, String scheduleEdDt) {
String wcBo = "";
if (!StringUtil.isEmpty(workCenter)) {
WorkCenterBOHandle boHandle = new WorkCenterBOHandle(site, workCenter);
wcBo = boHandle.getValue();
}
return userScheduleMapper.getInfoByUserOrWc(site, workCenter, user, scheduleStDt, scheduleEdDt);
}
@Override
public String getActivityRule(String activityBo) {
String value = "";
UserSchedule userSchedule = userScheduleMapper.getActivityRule(activityBo);
if (userSchedule != null ) {
value = userSchedule.getActivityValue();
}
return value;
}
@Override
public void delAndSave(StringBuffer buffer, List<UserSchedule> addList, Set<String> delSetList) {
if (buffer.length() == 0 && delSetList.size() > 0) {
for(String del: delSetList) {
String[] t = del.split("==");
if (t != null && t.length == 2) {
QueryWrapper<UserSchedule> queryWrapper = new QueryWrapper();
queryWrapper.eq(UserSchedule.USER_NAME, t[0]);
queryWrapper.eq(UserSchedule.SCHEDULE_DATE, t[1]);
remove(queryWrapper);
}
}
}
if (buffer.length() == 0 && addList.size() > 0) {
saveOrUpdateBatch(addList);
}
}
}

@ -0,0 +1,60 @@
package com.foreverwin.mesnac.listener.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.foreverwin.mesnac.listener.mapper.UsrMapper;
import com.foreverwin.mesnac.listener.model.SysUser;
import com.foreverwin.mesnac.listener.model.Usr;
import com.foreverwin.mesnac.listener.service.UsrService;
import com.foreverwin.modular.core.util.FrontPage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author sungang
* @since 2020-10-16
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class UsrServiceImpl extends ServiceImpl<UsrMapper, Usr> implements UsrService {
@Autowired
private UsrMapper usrMapper;
@Override
public IPage<Usr> selectPage(FrontPage<Usr> frontPage, Usr usr) {
QueryWrapper<Usr> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(usr);
return super.page(frontPage.getPagePlus(), queryWrapper);
}
@Override
public List<Usr> selectList(Usr usr) {
QueryWrapper<Usr> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(usr);
return super.list(queryWrapper);
}
@Override
public List<SysUser> selectListForPd(String site) {
return usrMapper.selectListForPd(site);
}
/* @Override
public List<Usr> userList(Usr user) {
String site = CommonMethods.getSite();
String user1 = CommonMethods.getUser();
user.setSite(site);
return usrMapper.userList(user);
}*/
}

@ -0,0 +1,14 @@
package com.foreverwin.mesnac.listener.util;
public class ConstantsUtil {
public static String Y = "Y";
public static String N = "N";
public static String NWA_USER_ID_PREFIX = "USER.PRIVATE_DATASOURCE.un:";
public static String NWA_USER_ACCOUNT_ID_PREFIX = "UACC.PRIVATE_DATASOURCE.un:";
/** 默认日期时间格式 */
public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";
/** 默认日期格式 */
public static final String DEFAULT_DATE_FORMAT = "yyyy-MM-dd";
}

@ -0,0 +1,575 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.foreverwin.mesnac.listener.mapper.SysUserMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.listener.model.SysUser">
<id column="HANDLE" property="handle" />
<result column="USER_NAME" property="userName" />
<result column="FIRST_NAME" property="firstName" />
<result column="LAST_NAME" property="lastName" />
<result column="FULL_NAME" property="fullName" />
<result column="PASSWORD" property="password" />
<result column="SALT" property="salt" />
<result column="PHONE" property="phone" />
<result column="AVATAR" property="avatar" />
<result column="DEPT_ID" property="deptId" />
<result column="CREATE_TIME" property="createTime" />
<result column="UPDATE_TIME" property="updateTime" />
<result column="LOCK_FLAG" property="lockFlag" />
<result column="DEL_FLAG" property="delFlag" />
<result column="SITE" property="site" />
<result column="DEPT_DESC" property="deptDesc" />
<result column="VALID_FROM" property="validFrom" />
<result column="VALID_TO" property="validTo" />
<result column="JOB_TITLE" property="jobTitle" />
<result column="EMAIL" property="email" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, USER_NAME, FIRST_NAME, LAST_NAME, FULL_NAME, PASSWORD, SALT, PHONE, AVATAR, DEPT_ID, CREATE_TIME, UPDATE_TIME, LOCK_FLAG, DEL_FLAG, SITE, DEPT_DESC, VALID_FROM, VALID_TO, JOB_TITLE, EMAIL
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_NWA_USER WHERE HANDLE=#{handle}
</select>
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_NWA_USER
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectBatchIds" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_NWA_USER WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_NWA_USER
<where>
<if test="ew.entity.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="getById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_NWA_USER WHERE SITE = #{site} AND USER_NAME = #{userName}
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
AND ${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.listener.model.SysUser">
INSERT INTO Z_NWA_USER
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="userName!=null">USER_NAME,</if>
<if test="firstName!=null">FIRST_NAME,</if>
<if test="lastName!=null">LAST_NAME,</if>
<if test="fullName!=null">FULL_NAME,</if>
<if test="password!=null">PASSWORD,</if>
<if test="salt!=null">SALT,</if>
<if test="phone!=null">PHONE,</if>
<if test="avatar!=null">AVATAR,</if>
<if test="deptId!=null">DEPT_ID,</if>
<if test="createTime!=null">CREATE_TIME,</if>
<if test="updateTime!=null">UPDATE_TIME,</if>
<if test="lockFlag!=null">LOCK_FLAG,</if>
<if test="delFlag!=null">DEL_FLAG,</if>
<if test="site!=null">SITE,</if>
<if test="deptDesc!=null">DEPT_DESC,</if>
<if test="validFrom!=null">VALID_FROM,</if>
<if test="validTo!=null">VALID_TO,</if>
<if test="jobTitle!=null">JOB_TITLE,</if>
<if test="email!=null">EMAIL,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="userName!=null">#{userName},</if>
<if test="firstName!=null">#{firstName},</if>
<if test="lastName!=null">#{lastName},</if>
<if test="fullName!=null">#{fullName},</if>
<if test="password!=null">#{password},</if>
<if test="salt!=null">#{salt},</if>
<if test="phone!=null">#{phone},</if>
<if test="avatar!=null">#{avatar},</if>
<if test="deptId!=null">#{deptId},</if>
<if test="createTime!=null">#{createTime},</if>
<if test="updateTime!=null">#{updateTime},</if>
<if test="lockFlag!=null">#{lockFlag},</if>
<if test="delFlag!=null">#{delFlag},</if>
<if test="site!=null">#{site},</if>
<if test="deptDesc!=null">#{deptDesc},</if>
<if test="validFrom!=null">#{validFrom},</if>
<if test="validTo!=null">#{validTo},</if>
<if test="jobTitle!=null">#{jobTitle},</if>
<if test="email!=null">#{email},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.listener.model.SysUser">
INSERT INTO Z_NWA_USER
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{userName},
#{firstName},
#{lastName},
#{fullName},
#{password},
#{salt},
#{phone},
#{avatar},
#{deptId},
#{createTime},
#{updateTime},
#{lockFlag},
#{delFlag},
#{site},
#{deptDesc},
#{validFrom},
#{validTo},
#{jobTitle},
#{email},
</trim>
</insert>
<update id="updateById">
UPDATE Z_NWA_USER <trim prefix="SET" suffixOverrides=",">
<if test="et.userName!=null">USER_NAME=#{et.userName},</if>
<if test="et.firstName!=null">FIRST_NAME=#{et.firstName},</if>
<if test="et.lastName!=null">LAST_NAME=#{et.lastName},</if>
<if test="et.fullName!=null">FULL_NAME=#{et.fullName},</if>
<if test="et.password!=null">PASSWORD=#{et.password},</if>
<if test="et.salt!=null">SALT=#{et.salt},</if>
<if test="et.phone!=null">PHONE=#{et.phone},</if>
<if test="et.avatar!=null">AVATAR=#{et.avatar},</if>
<if test="et.deptId!=null">DEPT_ID=#{et.deptId},</if>
<if test="et.createTime!=null">CREATE_TIME=#{et.createTime},</if>
<if test="et.updateTime!=null">UPDATE_TIME=#{et.updateTime},</if>
<if test="et.lockFlag!=null">LOCK_FLAG=#{et.lockFlag},</if>
<if test="et.delFlag!=null">DEL_FLAG=#{et.delFlag},</if>
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.deptDesc!=null">DEPT_DESC=#{et.deptDesc},</if>
<if test="et.validFrom!=null">VALID_FROM=#{et.validFrom},</if>
<if test="et.validTo!=null">VALID_TO=#{et.validTo},</if>
<if test="et.jobTitle!=null">JOB_TITLE=#{et.jobTitle},</if>
<if test="et.email!=null">EMAIL=#{et.email},</if>
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="updateAllColumnById">
UPDATE Z_NWA_USER <trim prefix="SET" suffixOverrides=",">
USER_NAME=#{et.userName},
FIRST_NAME=#{et.firstName},
LAST_NAME=#{et.lastName},
FULL_NAME=#{et.fullName},
PASSWORD=#{et.password},
SALT=#{et.salt},
PHONE=#{et.phone},
AVATAR=#{et.avatar},
DEPT_ID=#{et.deptId},
CREATE_TIME=#{et.createTime},
UPDATE_TIME=#{et.updateTime},
LOCK_FLAG=#{et.lockFlag},
DEL_FLAG=#{et.delFlag},
SITE=#{et.site},
DEPT_DESC=#{et.deptDesc},
VALID_FROM=#{et.validFrom},
VALID_TO=#{et.validTo},
JOB_TITLE=#{et.jobTitle},
EMAIL=#{et.email},
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="update">
UPDATE Z_NWA_USER <trim prefix="SET" suffixOverrides=",">
<if test="et.userName!=null">USER_NAME=#{et.userName},</if>
<if test="et.firstName!=null">FIRST_NAME=#{et.firstName},</if>
<if test="et.lastName!=null">LAST_NAME=#{et.lastName},</if>
<if test="et.fullName!=null">FULL_NAME=#{et.fullName},</if>
<if test="et.password!=null">PASSWORD=#{et.password},</if>
<if test="et.salt!=null">SALT=#{et.salt},</if>
<if test="et.phone!=null">PHONE=#{et.phone},</if>
<if test="et.avatar!=null">AVATAR=#{et.avatar},</if>
<if test="et.deptId!=null">DEPT_ID=#{et.deptId},</if>
<if test="et.createTime!=null">CREATE_TIME=#{et.createTime},</if>
<if test="et.updateTime!=null">UPDATE_TIME=#{et.updateTime},</if>
<if test="et.lockFlag!=null">LOCK_FLAG=#{et.lockFlag},</if>
<if test="et.delFlag!=null">DEL_FLAG=#{et.delFlag},</if>
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.deptDesc!=null">DEPT_DESC=#{et.deptDesc},</if>
<if test="et.validFrom!=null">VALID_FROM=#{et.validFrom},</if>
<if test="et.validTo!=null">VALID_TO=#{et.validTo},</if>
<if test="et.jobTitle!=null">JOB_TITLE=#{et.jobTitle},</if>
<if test="et.email!=null">EMAIL=#{et.email},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM Z_NWA_USER WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM Z_NWA_USER
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM Z_NWA_USER
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.firstName!=null"> AND FIRST_NAME=#{ew.entity.firstName}</if>
<if test="ew.entity.lastName!=null"> AND LAST_NAME=#{ew.entity.lastName}</if>
<if test="ew.entity.fullName!=null"> AND FULL_NAME=#{ew.entity.fullName}</if>
<if test="ew.entity.password!=null"> AND PASSWORD=#{ew.entity.password}</if>
<if test="ew.entity.salt!=null"> AND SALT=#{ew.entity.salt}</if>
<if test="ew.entity.phone!=null"> AND PHONE=#{ew.entity.phone}</if>
<if test="ew.entity.avatar!=null"> AND AVATAR=#{ew.entity.avatar}</if>
<if test="ew.entity.deptId!=null"> AND DEPT_ID=#{ew.entity.deptId}</if>
<if test="ew.entity.createTime!=null"> AND CREATE_TIME=#{ew.entity.createTime}</if>
<if test="ew.entity.updateTime!=null"> AND UPDATE_TIME=#{ew.entity.updateTime}</if>
<if test="ew.entity.lockFlag!=null"> AND LOCK_FLAG=#{ew.entity.lockFlag}</if>
<if test="ew.entity.delFlag!=null"> AND DEL_FLAG=#{ew.entity.delFlag}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.deptDesc!=null"> AND DEPT_DESC=#{ew.entity.deptDesc}</if>
<if test="ew.entity.validFrom!=null"> AND VALID_FROM=#{ew.entity.validFrom}</if>
<if test="ew.entity.validTo!=null"> AND VALID_TO=#{ew.entity.validTo}</if>
<if test="ew.entity.jobTitle!=null"> AND JOB_TITLE=#{ew.entity.jobTitle}</if>
<if test="ew.entity.email!=null"> AND EMAIL=#{ew.entity.email}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM Z_NWA_USER WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectListForPd" resultMap="BaseResultMap">
SELECT U.*, NU.FULL_NAME, NU.USER_NAME
FROM (SELECT RESPONSIBLE_USER_BO AS USER_ID,SITE FROM Z_STORAGE_BIN WHERE STATUS ='Y' AND RESPONSIBLE_USER_BO !='' GROUP BY RESPONSIBLE_USER_BO,SITE) U
INNER JOIN Z_NWA_USER NU
ON U.USER_ID = NU.USER_NAME
WHERE U.SITE = #{site}
ORDER BY U.USER_ID
</select>
</mapper>

@ -0,0 +1,517 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.foreverwin.mesnac.listener.mapper.UserScheduleMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.listener.model.UserSchedule">
<id column="HANDLE" property="handle" />
<result column="SITE" property="site" />
<result column="USER_NAME" property="userName" />
<result column="SCHEDULE_DATE" property="scheduleDate" />
<result column="TYPE" property="type" />
<result column="SCHEDULE_START_TIME" property="scheduleStartTime" />
<result column="SCHEDULE_END_TIME" property="scheduleEndTime" />
<result column="REMARK" property="remark" />
<result column="CREATED_DATE_TIME" property="createdDateTime" />
<result column="UPDATED_DATE_TIME" property="updatedDateTime" />
<result column="CREATE_USER_BO" property="createUserBo" />
<result column="UPDATE_USER_BO" property="updateUserBo" />
<result column="WEEK" property="week" />
<result column="SHIFT" property="shift" />
<result column="PARENT_BO" property="wc" />
<result column="PARENT_NAME" property="wcName" />
<result column="FULL_NAME" property="userFullName" />
<result column="SETTING" property="activityValue" />
<result column="SHIFT_DESC" property="shiftDesc" />
<result column="GY_SHIFT" property="gyShift" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, SITE, USER_NAME, SCHEDULE_DATE, TYPE, SCHEDULE_START_TIME, SCHEDULE_END_TIME, REMARK, CREATED_DATE_TIME, UPDATED_DATE_TIME, CREATE_USER_BO, UPDATE_USER_BO, WEEK, SHIFT
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_USER_SCHEDULE WHERE HANDLE=#{handle}
</select>
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_USER_SCHEDULE
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectBatchIds" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_USER_SCHEDULE WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_USER_SCHEDULE
<where>
<if test="ew.entity.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.listener.model.UserSchedule">
INSERT INTO Z_USER_SCHEDULE
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="site!=null">SITE,</if>
<if test="userName!=null">USER_NAME,</if>
<if test="scheduleDate!=null">SCHEDULE_DATE,</if>
<if test="type!=null">TYPE,</if>
<if test="scheduleStartTime!=null">SCHEDULE_START_TIME,</if>
<if test="scheduleEndTime!=null">SCHEDULE_END_TIME,</if>
<if test="remark!=null">REMARK,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="updatedDateTime!=null">UPDATED_DATE_TIME,</if>
<if test="createUserBo!=null">CREATE_USER_BO,</if>
<if test="updateUserBo!=null">UPDATE_USER_BO,</if>
<if test="week!=null">WEEK,</if>
<if test="shift!=null">SHIFT,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="site!=null">#{site},</if>
<if test="userName!=null">#{userName},</if>
<if test="scheduleDate!=null">#{scheduleDate},</if>
<if test="type!=null">#{type},</if>
<if test="scheduleStartTime!=null">#{scheduleStartTime},</if>
<if test="scheduleEndTime!=null">#{scheduleEndTime},</if>
<if test="remark!=null">#{remark},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="updatedDateTime!=null">#{updatedDateTime},</if>
<if test="createUserBo!=null">#{createUserBo},</if>
<if test="updateUserBo!=null">#{updateUserBo},</if>
<if test="week!=null">#{week},</if>
<if test="shift!=null">#{shift},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.listener.model.UserSchedule">
INSERT INTO Z_USER_SCHEDULE
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{site},
#{userName},
#{scheduleDate},
#{type},
#{scheduleStartTime},
#{scheduleEndTime},
#{remark},
#{createdDateTime},
#{updatedDateTime},
#{createUserBo},
#{updateUserBo},
#{week},
#{shift},
</trim>
</insert>
<update id="updateById">
UPDATE Z_USER_SCHEDULE <trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.userName!=null">USER_NAME=#{et.userName},</if>
<if test="et.scheduleDate!=null">SCHEDULE_DATE=#{et.scheduleDate},</if>
<if test="et.type!=null">TYPE=#{et.type},</if>
<if test="et.scheduleStartTime!=null">SCHEDULE_START_TIME=#{et.scheduleStartTime},</if>
<if test="et.scheduleEndTime!=null">SCHEDULE_END_TIME=#{et.scheduleEndTime},</if>
<if test="et.remark!=null">REMARK=#{et.remark},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.updatedDateTime!=null">UPDATED_DATE_TIME=#{et.updatedDateTime},</if>
<if test="et.createUserBo!=null">CREATE_USER_BO=#{et.createUserBo},</if>
<if test="et.updateUserBo!=null">UPDATE_USER_BO=#{et.updateUserBo},</if>
<if test="et.week!=null">WEEK=#{et.week},</if>
<if test="et.shift!=null">SHIFT=#{et.shift},</if>
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="updateAllColumnById">
UPDATE Z_USER_SCHEDULE <trim prefix="SET" suffixOverrides=",">
SITE=#{et.site},
USER_NAME=#{et.userName},
SCHEDULE_DATE=#{et.scheduleDate},
TYPE=#{et.type},
SCHEDULE_START_TIME=#{et.scheduleStartTime},
SCHEDULE_END_TIME=#{et.scheduleEndTime},
REMARK=#{et.remark},
CREATED_DATE_TIME=#{et.createdDateTime},
UPDATED_DATE_TIME=#{et.updatedDateTime},
CREATE_USER_BO=#{et.createUserBo},
UPDATE_USER_BO=#{et.updateUserBo},
WEEK=#{et.week},
SHIFT=#{et.shift},
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="update">
UPDATE Z_USER_SCHEDULE <trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.userName!=null">USER_NAME=#{et.userName},</if>
<if test="et.scheduleDate!=null">SCHEDULE_DATE=#{et.scheduleDate},</if>
<if test="et.type!=null">TYPE=#{et.type},</if>
<if test="et.scheduleStartTime!=null">SCHEDULE_START_TIME=#{et.scheduleStartTime},</if>
<if test="et.scheduleEndTime!=null">SCHEDULE_END_TIME=#{et.scheduleEndTime},</if>
<if test="et.remark!=null">REMARK=#{et.remark},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.updatedDateTime!=null">UPDATED_DATE_TIME=#{et.updatedDateTime},</if>
<if test="et.createUserBo!=null">CREATE_USER_BO=#{et.createUserBo},</if>
<if test="et.updateUserBo!=null">UPDATE_USER_BO=#{et.updateUserBo},</if>
<if test="et.week!=null">WEEK=#{et.week},</if>
<if test="et.shift!=null">SHIFT=#{et.shift},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM Z_USER_SCHEDULE WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM Z_USER_SCHEDULE
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM Z_USER_SCHEDULE
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userName!=null"> AND USER_NAME=#{ew.entity.userName}</if>
<if test="ew.entity.scheduleDate!=null"> AND SCHEDULE_DATE=#{ew.entity.scheduleDate}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.scheduleStartTime!=null"> AND SCHEDULE_START_TIME=#{ew.entity.scheduleStartTime}</if>
<if test="ew.entity.scheduleEndTime!=null"> AND SCHEDULE_END_TIME=#{ew.entity.scheduleEndTime}</if>
<if test="ew.entity.remark!=null"> AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
<if test="ew.entity.week!=null"> AND WEEK=#{ew.entity.week}</if>
<if test="ew.entity.shift!=null"> AND SHIFT=#{ew.entity.shift}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM Z_USER_SCHEDULE WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
<!-- 根据班课查询排班人员信息 -->
<select id="getInfoByUserOrWc" resultMap="BaseResultMap">
SELECT
DISTINCT
ZWO.PARENT_BO,
ZWO.PARENT_NAME,
NU.FULL_NAME,
ZUS.*,
US.DESCRIPTION SHIFT_DESC
FROM
Z_USER_SCHEDULE ZUS
INNER JOIN Z_NWA_USER NU ON UPPER(NU.USER_NAME) = UPPER(ZUS.USER_NAME) AND NU.SITE = ZUS.SITE
LEFT JOIN USER_SHIFT US ON US.NAME = ZUS.SHIFT AND US.SITE = ZUS.SITE
LEFT JOIN Z_WORK_CENTER_USER ZWCU ON ZWCU.USER_BO = ZUS.USER_NAME AND ZWCU.SITE = ZUS.SITE
LEFT JOIN WORK_CENTER_MEMBER WCM ON 'WorkCenterBO:' || ZWCU.SITE || ',' || ZWCU.WORK_CENTER_BO = WCM.WORK_CENTER_OR_RESOURCE_GBO
LEFT JOIN Z_WORKSHOP_ORGANIZATION ZWO1 ON WCM.WORK_CENTER_BO = 'WorkCenterBO:' || ZWO1.SITE || ',' || ZWO1.NAME AND ZWO1.LEVEL = '3'
LEFT JOIN Z_WORKSHOP_ORGANIZATION ZWO ON ZWO.NAME = ZWO1.PARENT_BO AND ZWO.LEVEL = '2' AND ZWO1.SITE = #{site}
WHERE
ZUS.SITE = #{site}
<if test="scheduleStDt!=null and scheduleStDt!=''">
AND ZUS.SCHEDULE_DATE <![CDATA[ >= ]]> #{scheduleStDt}
</if>
<if test="scheduleEdDt!=null and scheduleEdDt!=''">
AND ZUS.SCHEDULE_DATE <![CDATA[ <= ]]> #{scheduleEdDt}
</if>
<if test="wcBo!=null and wcBo!=''">
AND ZWO.PARENT_BO = #{wcBo}
</if>
<if test="user!=null and user!=''">
AND UPPER(ZUS.USER_NAME) = UPPER(#{user})
</if>
</select>
<!-- 查找作业规则 -->
<select id="getActivityRule" resultMap="BaseResultMap" >
SELECT SETTING FROM ACTIVITY_OPTION WHERE ACTIVITY_BO = #{activityBo}
AND EXEC_UNIT_OPTION = 'RULE_01'
</select>
<!--与盖亚班次映射关系-->
<select id="getShiftMappingGyAndMe" resultMap="BaseResultMap">
SELECT dfl.DATA_VALUE AS GY_SHIFT,dflt.DATA_TAG AS SHIFT
FROM DATA_FIELD df
INNER JOIN DATA_FIELD_LIST dfl ON df.HANDLE = dfl.DATA_FIELD_BO
INNER JOIN DATA_FIELD_LIST_T dflt ON dfl.HANDLE = dflt.DATA_FIELD_LIST_BO
WHERE df.SITE = #{site} AND df.DATA_FIELD = 'SHIFT_MAPPING' AND dflt.LOCALE = 'zh'
</select>
</mapper>

@ -0,0 +1,610 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.foreverwin.mesnac.listener.mapper.UsrMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.listener.model.Usr">
<id column="HANDLE" property="handle" />
<result column="CHANGE_STAMP" property="changeStamp" />
<result column="SITE" property="site" />
<result column="USER_ID" property="userId" />
<result column="FULL_NAME" property="fullName" />
<result column="CURRENT_OPERATION_BO" property="currentOperationBo" />
<result column="CURRENT_RESOURCE_BO" property="currentResourceBo" />
<result column="CREATED_DATE_TIME" property="createdDateTime" />
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
<result column="BADGE_NUMBER" property="badgeNumber" />
<result column="EMPLOYEE_NUMBER" property="employeeNumber" />
<result column="HIRE_DATE" property="hireDate" />
<result column="TERMINATION_DATE" property="terminationDate" />
<result column="ALLOW_CLOCK_IN_NON_PROD" property="allowClockInNonProd" />
<result column="ACTION_CLOCK_OUT_SFC" property="actionClockOutSfc" />
<result column="CLOCK_IN_OUT_RANGE" property="clockInOutRange" />
<result column="ALLOW_SUP_TIME_EDIT_APPR" property="allowSupTimeEditAppr" />
<result column="APPR_REQ_FOR_EXPORT" property="apprReqForExport" />
<result column="AUTO_CLOCK_OUT" property="autoClockOut" />
<result column="CLOCK_IN_CONTROL" property="clockInControl" />
<result column="DEFAULT_WORK_CENTER_BO" property="defaultWorkCenterBo" />
<result column="ERP_PERSONNEL_NUMBER" property="erpPersonnelNumber" />
<result column="ERP_USER" property="erpUser" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, CHANGE_STAMP, SITE, USER_ID, CURRENT_OPERATION_BO, CURRENT_RESOURCE_BO, CREATED_DATE_TIME, MODIFIED_DATE_TIME, BADGE_NUMBER, EMPLOYEE_NUMBER, HIRE_DATE, TERMINATION_DATE, ALLOW_CLOCK_IN_NON_PROD, ACTION_CLOCK_OUT_SFC, CLOCK_IN_OUT_RANGE, ALLOW_SUP_TIME_EDIT_APPR, APPR_REQ_FOR_EXPORT, AUTO_CLOCK_OUT, CLOCK_IN_CONTROL, DEFAULT_WORK_CENTER_BO, ERP_PERSONNEL_NUMBER, ERP_USER
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM USR WHERE HANDLE=#{handle}
</select>
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM USR
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectBatchIds" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM USR WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM USR
<where>
<if test="ew.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.changeStamp!=null"> AND CHANGE_STAMP=#{ew.changeStamp}</if>
<if test="ew.site!=null"> AND SITE=#{ew.site}</if>
<if test="ew.userId!=null"> AND USER_ID=#{ew.userId}</if>
<if test="ew.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.currentOperationBo}</if>
<if test="ew.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.currentResourceBo}</if>
<if test="ew.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.createdDateTime}</if>
<if test="ew.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.modifiedDateTime}</if>
<if test="ew.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.badgeNumber}</if>
<if test="ew.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.employeeNumber}</if>
<if test="ew.hireDate!=null"> AND HIRE_DATE=#{ew.hireDate}</if>
<if test="ew.terminationDate!=null"> AND TERMINATION_DATE=#{ew.terminationDate}</if>
<if test="ew.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.allowClockInNonProd}</if>
<if test="ew.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.actionClockOutSfc}</if>
<if test="ew.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.clockInOutRange}</if>
<if test="ew.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.allowSupTimeEditAppr}</if>
<if test="ew.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.apprReqForExport}</if>
<if test="ew.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.autoClockOut}</if>
<if test="ew.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.clockInControl}</if>
<if test="ew.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.defaultWorkCenterBo}</if>
<if test="ew.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.erpPersonnelNumber}</if>
<if test="ew.erpUser!=null"> AND ERP_USER=#{ew.erpUser}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<!-- <select id="userList" resultMap="BaseResultMap">
SELECT USR.USER_ID,ZNU.FULL_NAME FROM USR
LEFT JOIN Z_NWA_USER ZNU ON USR.USER_ID = ZNU.USER_NAME
WHERE USR.SITE=#{site} AND (USR.USER_ID=#{userId} OR #{userId} = NULL)
</select>-->
<select id="selectListForPd" resultMap="BaseResultMap">
SELECT U.*, NU.FULL_NAME
FROM (SELECT RESPONSIBLE_USER_BO AS USER_ID,SITE FROM Z_STORAGE_BIN WHERE STATUS ='Y' AND RESPONSIBLE_USER_BO !='' GROUP BY RESPONSIBLE_USER_BO,SITE) U
INNER JOIN Z_NWA_USER NU
ON U.USER_ID = NU.USER_NAME
WHERE U.SITE = #{site}
ORDER BY U.USER_ID
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.listener.model.Usr">
INSERT INTO USR
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="changeStamp!=null">CHANGE_STAMP,</if>
<if test="site!=null">SITE,</if>
<if test="userId!=null">USER_ID,</if>
<if test="currentOperationBo!=null">CURRENT_OPERATION_BO,</if>
<if test="currentResourceBo!=null">CURRENT_RESOURCE_BO,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
<if test="badgeNumber!=null">BADGE_NUMBER,</if>
<if test="employeeNumber!=null">EMPLOYEE_NUMBER,</if>
<if test="hireDate!=null">HIRE_DATE,</if>
<if test="terminationDate!=null">TERMINATION_DATE,</if>
<if test="allowClockInNonProd!=null">ALLOW_CLOCK_IN_NON_PROD,</if>
<if test="actionClockOutSfc!=null">ACTION_CLOCK_OUT_SFC,</if>
<if test="clockInOutRange!=null">CLOCK_IN_OUT_RANGE,</if>
<if test="allowSupTimeEditAppr!=null">ALLOW_SUP_TIME_EDIT_APPR,</if>
<if test="apprReqForExport!=null">APPR_REQ_FOR_EXPORT,</if>
<if test="autoClockOut!=null">AUTO_CLOCK_OUT,</if>
<if test="clockInControl!=null">CLOCK_IN_CONTROL,</if>
<if test="defaultWorkCenterBo!=null">DEFAULT_WORK_CENTER_BO,</if>
<if test="erpPersonnelNumber!=null">ERP_PERSONNEL_NUMBER,</if>
<if test="erpUser!=null">ERP_USER,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="changeStamp!=null">#{changeStamp},</if>
<if test="site!=null">#{site},</if>
<if test="userId!=null">#{userId},</if>
<if test="currentOperationBo!=null">#{currentOperationBo},</if>
<if test="currentResourceBo!=null">#{currentResourceBo},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
<if test="badgeNumber!=null">#{badgeNumber},</if>
<if test="employeeNumber!=null">#{employeeNumber},</if>
<if test="hireDate!=null">#{hireDate},</if>
<if test="terminationDate!=null">#{terminationDate},</if>
<if test="allowClockInNonProd!=null">#{allowClockInNonProd},</if>
<if test="actionClockOutSfc!=null">#{actionClockOutSfc},</if>
<if test="clockInOutRange!=null">#{clockInOutRange},</if>
<if test="allowSupTimeEditAppr!=null">#{allowSupTimeEditAppr},</if>
<if test="apprReqForExport!=null">#{apprReqForExport},</if>
<if test="autoClockOut!=null">#{autoClockOut},</if>
<if test="clockInControl!=null">#{clockInControl},</if>
<if test="defaultWorkCenterBo!=null">#{defaultWorkCenterBo},</if>
<if test="erpPersonnelNumber!=null">#{erpPersonnelNumber},</if>
<if test="erpUser!=null">#{erpUser},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.listener.model.Usr">
INSERT INTO USR
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{changeStamp},
#{site},
#{userId},
#{currentOperationBo},
#{currentResourceBo},
#{createdDateTime},
#{modifiedDateTime},
#{badgeNumber},
#{employeeNumber},
#{hireDate},
#{terminationDate},
#{allowClockInNonProd},
#{actionClockOutSfc},
#{clockInOutRange},
#{allowSupTimeEditAppr},
#{apprReqForExport},
#{autoClockOut},
#{clockInControl},
#{defaultWorkCenterBo},
#{erpPersonnelNumber},
#{erpUser},
</trim>
</insert>
<update id="updateById">
UPDATE USR <trim prefix="SET" suffixOverrides=",">
<if test="et.changeStamp!=null">CHANGE_STAMP=#{et.changeStamp},</if>
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.userId!=null">USER_ID=#{et.userId},</if>
<if test="et.currentOperationBo!=null">CURRENT_OPERATION_BO=#{et.currentOperationBo},</if>
<if test="et.currentResourceBo!=null">CURRENT_RESOURCE_BO=#{et.currentResourceBo},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.badgeNumber!=null">BADGE_NUMBER=#{et.badgeNumber},</if>
<if test="et.employeeNumber!=null">EMPLOYEE_NUMBER=#{et.employeeNumber},</if>
<if test="et.hireDate!=null">HIRE_DATE=#{et.hireDate},</if>
<if test="et.terminationDate!=null">TERMINATION_DATE=#{et.terminationDate},</if>
<if test="et.allowClockInNonProd!=null">ALLOW_CLOCK_IN_NON_PROD=#{et.allowClockInNonProd},</if>
<if test="et.actionClockOutSfc!=null">ACTION_CLOCK_OUT_SFC=#{et.actionClockOutSfc},</if>
<if test="et.clockInOutRange!=null">CLOCK_IN_OUT_RANGE=#{et.clockInOutRange},</if>
<if test="et.allowSupTimeEditAppr!=null">ALLOW_SUP_TIME_EDIT_APPR=#{et.allowSupTimeEditAppr},</if>
<if test="et.apprReqForExport!=null">APPR_REQ_FOR_EXPORT=#{et.apprReqForExport},</if>
<if test="et.autoClockOut!=null">AUTO_CLOCK_OUT=#{et.autoClockOut},</if>
<if test="et.clockInControl!=null">CLOCK_IN_CONTROL=#{et.clockInControl},</if>
<if test="et.defaultWorkCenterBo!=null">DEFAULT_WORK_CENTER_BO=#{et.defaultWorkCenterBo},</if>
<if test="et.erpPersonnelNumber!=null">ERP_PERSONNEL_NUMBER=#{et.erpPersonnelNumber},</if>
<if test="et.erpUser!=null">ERP_USER=#{et.erpUser},</if>
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="updateAllColumnById">
UPDATE USR <trim prefix="SET" suffixOverrides=",">
CHANGE_STAMP=#{et.changeStamp},
SITE=#{et.site},
USER_ID=#{et.userId},
CURRENT_OPERATION_BO=#{et.currentOperationBo},
CURRENT_RESOURCE_BO=#{et.currentResourceBo},
CREATED_DATE_TIME=#{et.createdDateTime},
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
BADGE_NUMBER=#{et.badgeNumber},
EMPLOYEE_NUMBER=#{et.employeeNumber},
HIRE_DATE=#{et.hireDate},
TERMINATION_DATE=#{et.terminationDate},
ALLOW_CLOCK_IN_NON_PROD=#{et.allowClockInNonProd},
ACTION_CLOCK_OUT_SFC=#{et.actionClockOutSfc},
CLOCK_IN_OUT_RANGE=#{et.clockInOutRange},
ALLOW_SUP_TIME_EDIT_APPR=#{et.allowSupTimeEditAppr},
APPR_REQ_FOR_EXPORT=#{et.apprReqForExport},
AUTO_CLOCK_OUT=#{et.autoClockOut},
CLOCK_IN_CONTROL=#{et.clockInControl},
DEFAULT_WORK_CENTER_BO=#{et.defaultWorkCenterBo},
ERP_PERSONNEL_NUMBER=#{et.erpPersonnelNumber},
ERP_USER=#{et.erpUser},
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
</update>
<update id="update">
UPDATE USR <trim prefix="SET" suffixOverrides=",">
<if test="et.changeStamp!=null">CHANGE_STAMP=#{et.changeStamp},</if>
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.userId!=null">USER_ID=#{et.userId},</if>
<if test="et.currentOperationBo!=null">CURRENT_OPERATION_BO=#{et.currentOperationBo},</if>
<if test="et.currentResourceBo!=null">CURRENT_RESOURCE_BO=#{et.currentResourceBo},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.badgeNumber!=null">BADGE_NUMBER=#{et.badgeNumber},</if>
<if test="et.employeeNumber!=null">EMPLOYEE_NUMBER=#{et.employeeNumber},</if>
<if test="et.hireDate!=null">HIRE_DATE=#{et.hireDate},</if>
<if test="et.terminationDate!=null">TERMINATION_DATE=#{et.terminationDate},</if>
<if test="et.allowClockInNonProd!=null">ALLOW_CLOCK_IN_NON_PROD=#{et.allowClockInNonProd},</if>
<if test="et.actionClockOutSfc!=null">ACTION_CLOCK_OUT_SFC=#{et.actionClockOutSfc},</if>
<if test="et.clockInOutRange!=null">CLOCK_IN_OUT_RANGE=#{et.clockInOutRange},</if>
<if test="et.allowSupTimeEditAppr!=null">ALLOW_SUP_TIME_EDIT_APPR=#{et.allowSupTimeEditAppr},</if>
<if test="et.apprReqForExport!=null">APPR_REQ_FOR_EXPORT=#{et.apprReqForExport},</if>
<if test="et.autoClockOut!=null">AUTO_CLOCK_OUT=#{et.autoClockOut},</if>
<if test="et.clockInControl!=null">CLOCK_IN_CONTROL=#{et.clockInControl},</if>
<if test="et.defaultWorkCenterBo!=null">DEFAULT_WORK_CENTER_BO=#{et.defaultWorkCenterBo},</if>
<if test="et.erpPersonnelNumber!=null">ERP_PERSONNEL_NUMBER=#{et.erpPersonnelNumber},</if>
<if test="et.erpUser!=null">ERP_USER=#{et.erpUser},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM USR WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM USR
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM USR
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.userId!=null"> AND USER_ID=#{ew.entity.userId}</if>
<if test="ew.entity.currentOperationBo!=null"> AND CURRENT_OPERATION_BO=#{ew.entity.currentOperationBo}</if>
<if test="ew.entity.currentResourceBo!=null"> AND CURRENT_RESOURCE_BO=#{ew.entity.currentResourceBo}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.badgeNumber!=null"> AND BADGE_NUMBER=#{ew.entity.badgeNumber}</if>
<if test="ew.entity.employeeNumber!=null"> AND EMPLOYEE_NUMBER=#{ew.entity.employeeNumber}</if>
<if test="ew.entity.hireDate!=null"> AND HIRE_DATE=#{ew.entity.hireDate}</if>
<if test="ew.entity.terminationDate!=null"> AND TERMINATION_DATE=#{ew.entity.terminationDate}</if>
<if test="ew.entity.allowClockInNonProd!=null"> AND ALLOW_CLOCK_IN_NON_PROD=#{ew.entity.allowClockInNonProd}</if>
<if test="ew.entity.actionClockOutSfc!=null"> AND ACTION_CLOCK_OUT_SFC=#{ew.entity.actionClockOutSfc}</if>
<if test="ew.entity.clockInOutRange!=null"> AND CLOCK_IN_OUT_RANGE=#{ew.entity.clockInOutRange}</if>
<if test="ew.entity.allowSupTimeEditAppr!=null"> AND ALLOW_SUP_TIME_EDIT_APPR=#{ew.entity.allowSupTimeEditAppr}</if>
<if test="ew.entity.apprReqForExport!=null"> AND APPR_REQ_FOR_EXPORT=#{ew.entity.apprReqForExport}</if>
<if test="ew.entity.autoClockOut!=null"> AND AUTO_CLOCK_OUT=#{ew.entity.autoClockOut}</if>
<if test="ew.entity.clockInControl!=null"> AND CLOCK_IN_CONTROL=#{ew.entity.clockInControl}</if>
<if test="ew.entity.defaultWorkCenterBo!=null"> AND DEFAULT_WORK_CENTER_BO=#{ew.entity.defaultWorkCenterBo}</if>
<if test="ew.entity.erpPersonnelNumber!=null"> AND ERP_PERSONNEL_NUMBER=#{ew.entity.erpPersonnelNumber}</if>
<if test="ew.entity.erpUser!=null"> AND ERP_USER=#{ew.entity.erpUser}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM USR WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
</mapper>

@ -21,6 +21,7 @@
<module>quality</module>
<module>equip</module>
<module>integration</module>
<module>listener</module>
</modules>
<properties>

Loading…
Cancel
Save