11.17修改
parent
d5440442bc
commit
70693239dc
@ -0,0 +1,18 @@
|
||||
package com.foreverwin.mesnac.anomaly.mapper;
|
||||
|
||||
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author YANG.WL
|
||||
* @since 2022-11-14
|
||||
*/
|
||||
@Repository
|
||||
public interface WxOrderReceivedMapper extends BaseMapper<WxOrderReceived> {
|
||||
|
||||
}
|
@ -0,0 +1,179 @@
|
||||
package com.foreverwin.mesnac.anomaly.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import java.io.Serializable;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author YANG.WL
|
||||
* @since 2022-11-14
|
||||
*/
|
||||
|
||||
@TableName("Z_WX_ORDER_RECEIVED")
|
||||
|
||||
public class WxOrderReceived extends Model<WxOrderReceived> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 外协订单表主键
|
||||
*/
|
||||
@TableField("WX_ORDER_BO")
|
||||
private String wxOrderBo;
|
||||
/**
|
||||
* 到货数量
|
||||
*/
|
||||
@TableField("RECEIVE_NUMBER")
|
||||
private Integer receiveNumber;
|
||||
/**
|
||||
* 到货时间
|
||||
*/
|
||||
@TableField("CREATED_DATE_TIME")
|
||||
private LocalDateTime createdDateTime;
|
||||
/**
|
||||
* 收货人
|
||||
*/
|
||||
@TableField("CREATED_USER")
|
||||
private String createdUser;
|
||||
/**
|
||||
* 修改人员
|
||||
*/
|
||||
@TableField("MODIFY_USER")
|
||||
private String modifyUser;
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
@TableField("MODIFIED_DATE_TIME")
|
||||
private LocalDateTime modifiedDateTime;
|
||||
@TableField("OTHER_1")
|
||||
private String other1;
|
||||
@TableField("OTHER_2")
|
||||
private String other2;
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(value = "HANDLE", type = IdType.INPUT)
|
||||
private String handle;
|
||||
|
||||
|
||||
public String getWxOrderBo() {
|
||||
return wxOrderBo;
|
||||
}
|
||||
|
||||
public void setWxOrderBo(String wxOrderBo) {
|
||||
this.wxOrderBo = wxOrderBo;
|
||||
}
|
||||
|
||||
public Integer getReceiveNumber() {
|
||||
return receiveNumber;
|
||||
}
|
||||
|
||||
public void setReceiveNumber(Integer receiveNumber) {
|
||||
this.receiveNumber = receiveNumber;
|
||||
}
|
||||
|
||||
public LocalDateTime getCreatedDateTime() {
|
||||
return createdDateTime;
|
||||
}
|
||||
|
||||
public void setCreatedDateTime(LocalDateTime createdDateTime) {
|
||||
this.createdDateTime = createdDateTime;
|
||||
}
|
||||
|
||||
public String getCreatedUser() {
|
||||
return createdUser;
|
||||
}
|
||||
|
||||
public void setCreatedUser(String createdUser) {
|
||||
this.createdUser = createdUser;
|
||||
}
|
||||
|
||||
public String getModifyUser() {
|
||||
return modifyUser;
|
||||
}
|
||||
|
||||
public void setModifyUser(String modifyUser) {
|
||||
this.modifyUser = modifyUser;
|
||||
}
|
||||
|
||||
public LocalDateTime getModifiedDateTime() {
|
||||
return modifiedDateTime;
|
||||
}
|
||||
|
||||
public void setModifiedDateTime(LocalDateTime modifiedDateTime) {
|
||||
this.modifiedDateTime = modifiedDateTime;
|
||||
}
|
||||
|
||||
public String getOther1() {
|
||||
return other1;
|
||||
}
|
||||
|
||||
public void setOther1(String other1) {
|
||||
this.other1 = other1;
|
||||
}
|
||||
|
||||
public String getOther2() {
|
||||
return other2;
|
||||
}
|
||||
|
||||
public void setOther2(String other2) {
|
||||
this.other2 = other2;
|
||||
}
|
||||
|
||||
public String getHandle() {
|
||||
return handle;
|
||||
}
|
||||
|
||||
public void setHandle(String handle) {
|
||||
this.handle = handle;
|
||||
}
|
||||
|
||||
public static final String WX_ORDER_BO = "WX_ORDER_BO";
|
||||
|
||||
public static final String NUMBER = "NUMBER";
|
||||
|
||||
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
|
||||
|
||||
public static final String CREATED_USER = "CREATED_USER";
|
||||
|
||||
public static final String MODIFY_USER = "MODIFY_USER";
|
||||
|
||||
public static final String MODIFIED_DATE_TIME = "MODIFIED_DATE_TIME";
|
||||
|
||||
public static final String OTHER_1 = "OTHER_1";
|
||||
|
||||
public static final String OTHER_2 = "OTHER_2";
|
||||
|
||||
public static final String HANDLE = "HANDLE";
|
||||
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.handle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "WxOrderReceived{" +
|
||||
"wxOrderBo = " + wxOrderBo +
|
||||
", receiveNumber = " + receiveNumber +
|
||||
", createdDateTime = " + createdDateTime +
|
||||
", createdUser = " + createdUser +
|
||||
", modifyUser = " + modifyUser +
|
||||
", modifiedDateTime = " + modifiedDateTime +
|
||||
", other1 = " + other1 +
|
||||
", other2 = " + other2 +
|
||||
", handle = " + handle +
|
||||
"}";
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.foreverwin.mesnac.anomaly.service;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.foreverwin.modular.core.util.FrontPage;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author YANG.WL
|
||||
* @since 2022-11-14
|
||||
*/
|
||||
public interface WxOrderReceivedService extends IService<WxOrderReceived> {
|
||||
|
||||
/**
|
||||
* 分页查询
|
||||
* @param frontPage
|
||||
* @return
|
||||
*/
|
||||
IPage<WxOrderReceived> selectPage(FrontPage<WxOrderReceived> frontPage, WxOrderReceived wxOrderReceived);
|
||||
|
||||
List<WxOrderReceived> selectList(WxOrderReceived wxOrderReceived);
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
package com.foreverwin.mesnac.anomaly.service.impl;
|
||||
|
||||
import com.foreverwin.modular.core.util.FrontPage;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.foreverwin.mesnac.anomaly.model.WxOrderReceived;
|
||||
import com.foreverwin.mesnac.anomaly.mapper.WxOrderReceivedMapper;
|
||||
import com.foreverwin.mesnac.anomaly.service.WxOrderReceivedService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.List;
|
||||
/**
|
||||
* <p>
|
||||
* 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author YANG.WL
|
||||
* @since 2022-11-14
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class WxOrderReceivedServiceImpl extends ServiceImpl<WxOrderReceivedMapper, WxOrderReceived> implements WxOrderReceivedService {
|
||||
|
||||
|
||||
@Autowired
|
||||
private WxOrderReceivedMapper wxOrderReceivedMapper;
|
||||
|
||||
@Override
|
||||
public IPage<WxOrderReceived> selectPage(FrontPage<WxOrderReceived> frontPage, WxOrderReceived wxOrderReceived) {
|
||||
QueryWrapper<WxOrderReceived> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(wxOrderReceived);
|
||||
return super.page(frontPage.getPagePlus(), queryWrapper);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<WxOrderReceived> selectList(WxOrderReceived wxOrderReceived) {
|
||||
QueryWrapper<WxOrderReceived> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(wxOrderReceived);
|
||||
return super.list(queryWrapper);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,386 @@
|
||||
<?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.anomaly.mapper.WxOrderReceivedMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.anomaly.model.WxOrderReceived">
|
||||
<id column="HANDLE" property="handle" />
|
||||
<result column="WX_ORDER_BO" property="wxOrderBo" />
|
||||
<result column="RECEIVE_NUMBER" property="receiveNumber" />
|
||||
<result column="CREATED_DATE_TIME" property="createdDateTime" />
|
||||
<result column="CREATED_USER" property="createdUser" />
|
||||
<result column="MODIFY_USER" property="modifyUser" />
|
||||
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
|
||||
<result column="OTHER_1" property="other1" />
|
||||
<result column="OTHER_2" property="other2" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
WX_ORDER_BO, RECEIVE_NUMBER, CREATED_DATE_TIME, CREATED_USER, MODIFY_USER, MODIFIED_DATE_TIME, OTHER_1, OTHER_2, HANDLE
|
||||
</sql>
|
||||
|
||||
<!-- BaseMapper标准查询/修改/删除 -->
|
||||
<select id="selectById" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include> FROM Z_WX_ORDER_RECEIVED WHERE HANDLE=#{handle}
|
||||
</select>
|
||||
|
||||
<select id="selectByMap" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include>
|
||||
FROM Z_WX_ORDER_RECEIVED
|
||||
<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_WX_ORDER_RECEIVED 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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectCount" resultType="Integer">
|
||||
SELECT COUNT(1) FROM Z_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.wxOrderBo!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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.anomaly.model.WxOrderReceived">
|
||||
INSERT INTO Z_WX_ORDER_RECEIVED
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
WX_ORDER_BO,
|
||||
<if test="receiveNumber!=null">RECEIVE_NUMBER,</if>
|
||||
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
|
||||
<if test="createdUser!=null">CREATED_USER,</if>
|
||||
<if test="modifyUser!=null">MODIFY_USER,</if>
|
||||
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
|
||||
<if test="other1!=null">OTHER_1,</if>
|
||||
<if test="other2!=null">OTHER_2,</if>
|
||||
<if test="handle!=null">HANDLE,</if>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{wxOrderBo},
|
||||
<if test="receiveNumber!=null">#{receiveNumber},</if>
|
||||
<if test="createdDateTime!=null">#{createdDateTime},</if>
|
||||
<if test="createdUser!=null">#{createdUser},</if>
|
||||
<if test="modifyUser!=null">#{modifyUser},</if>
|
||||
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
|
||||
<if test="other1!=null">#{other1},</if>
|
||||
<if test="other2!=null">#{other2},</if>
|
||||
<if test="handle!=null">#{handle},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.anomaly.model.WxOrderReceived">
|
||||
INSERT INTO Z_WX_ORDER_RECEIVED
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<include refid="Base_Column_List"></include>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{wxOrderBo},
|
||||
#{receiveNumber},
|
||||
#{createdDateTime},
|
||||
#{createdUser},
|
||||
#{modifyUser},
|
||||
#{modifiedDateTime},
|
||||
#{other1},
|
||||
#{other2},
|
||||
#{handle},
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
||||
<update id="updateById">
|
||||
UPDATE Z_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.wxOrderBo!=null">WX_ORDER_BO=#{et.wxOrderBo},</if>
|
||||
<if test="et.receiveNumber!=null">RECEIVE_NUMBER=#{et.receiveNumber},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
<if test="et.createdUser!=null">CREATED_USER=#{et.createdUser},</if>
|
||||
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
|
||||
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
|
||||
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
|
||||
<if test="et.other2!=null">OTHER_2=#{et.other2},</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_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
|
||||
WX_ORDER_BO=#{et.wxOrderBo},
|
||||
RECEIVE_NUMBER=#{et.receiveNumber},
|
||||
CREATED_DATE_TIME=#{et.createdDateTime},
|
||||
CREATED_USER=#{et.createdUser},
|
||||
MODIFY_USER=#{et.modifyUser},
|
||||
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
|
||||
OTHER_1=#{et.other1},
|
||||
OTHER_2=#{et.other2},
|
||||
</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_WX_ORDER_RECEIVED <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.wxOrderBo!=null">WX_ORDER_BO=#{et.wxOrderBo},</if>
|
||||
<if test="et.receiveNumber!=null">RECEIVE_NUMBER=#{et.receiveNumber},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
<if test="et.createdUser!=null">CREATED_USER=#{et.createdUser},</if>
|
||||
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
|
||||
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
|
||||
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
|
||||
<if test="et.other2!=null">OTHER_2=#{et.other2},</if>
|
||||
</trim>
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED WHERE HANDLE=#{handle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByMap">
|
||||
DELETE FROM Z_WX_ORDER_RECEIVED
|
||||
<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_WX_ORDER_RECEIVED
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
WX_ORDER_BO=#{ew.entity.wxOrderBo}
|
||||
</if>
|
||||
<if test="ew.entity.receiveNumber!=null"> AND RECEIVE_NUMBER=#{ew.entity.receiveNumber}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
<if test="ew.entity.createdUser!=null"> AND CREATED_USER=#{ew.entity.createdUser}</if>
|
||||
<if test="ew.entity.modifyUser!=null"> AND MODIFY_USER=#{ew.entity.modifyUser}</if>
|
||||
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
||||
<if test="ew.entity.other1!=null"> AND OTHER_1=#{ew.entity.other1}</if>
|
||||
<if test="ew.entity.other2!=null"> AND OTHER_2=#{ew.entity.other2}</if>
|
||||
<if test="ew.entity.handle!=null"> AND HANDLE=#{ew.entity.handle}</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_WX_ORDER_RECEIVED WHERE HANDLE IN (
|
||||
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
||||
</foreach>)
|
||||
</delete>
|
||||
<!-- BaseMapper标准查询/修改/删除 -->
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue