工作令加工进度报表去重,虚拟打印,批次码生成。
parent
c3e9b02d44
commit
528c75a623
@ -0,0 +1,19 @@
|
||||
package com.foreverwin.mesnac.common.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.foreverwin.mesnac.common.model.ItemBatchdDto;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 物料批次表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author Leon.L
|
||||
* @since 2021-06-18
|
||||
*/
|
||||
@Repository
|
||||
public interface ItemBatchMapperSave extends BaseMapper<ItemBatchdDto> {
|
||||
|
||||
}
|
@ -0,0 +1,260 @@
|
||||
package com.foreverwin.mesnac.common.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 Leon.L
|
||||
* @since 2021-06-28
|
||||
*/
|
||||
|
||||
@TableName("Z_ITEM_BATCH")
|
||||
public class ItemBatchdDto extends Model<ItemBatchdDto> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(value = "HANDLE", type = IdType.INPUT)
|
||||
private String handle;
|
||||
/**
|
||||
* 站点
|
||||
*/
|
||||
@TableField("SITE")
|
||||
private String site;
|
||||
/**
|
||||
* 工厂
|
||||
*/
|
||||
@TableField("FACTORY")
|
||||
private String factory;
|
||||
/**
|
||||
* 物料编号
|
||||
*/
|
||||
@TableField("ITEM")
|
||||
private String item;
|
||||
/**
|
||||
* 采购批次
|
||||
*/
|
||||
@TableField("BATCH")
|
||||
private String batch;
|
||||
/**
|
||||
* 规格
|
||||
*/
|
||||
@TableField("SPEC")
|
||||
private String spec;
|
||||
/**
|
||||
* 材质
|
||||
*/
|
||||
@TableField("TEXTURE")
|
||||
private String texture;
|
||||
/**
|
||||
* 供应商
|
||||
*/
|
||||
@TableField("SUPPLIER")
|
||||
private String supplier;
|
||||
/**
|
||||
* 标签
|
||||
*/
|
||||
@TableField("LABEL")
|
||||
private String label;
|
||||
@TableField("IS_PRINT")
|
||||
private String isPrint;
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField("CREATE_USER")
|
||||
private String createUser;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("CREATED_DATE_TIME")
|
||||
private LocalDateTime createdDateTime;
|
||||
/**
|
||||
* 修改人
|
||||
*/
|
||||
@TableField("MODIFY_USER")
|
||||
private String modifyUser;
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
@TableField("MODIFIED_DATE_TIME")
|
||||
private LocalDateTime modifiedDateTime;
|
||||
|
||||
|
||||
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 getFactory() {
|
||||
return factory;
|
||||
}
|
||||
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
public String getItem() {
|
||||
return item;
|
||||
}
|
||||
|
||||
public void setItem(String item) {
|
||||
this.item = item;
|
||||
}
|
||||
|
||||
public String getBatch() {
|
||||
return batch;
|
||||
}
|
||||
|
||||
public void setBatch(String batch) {
|
||||
this.batch = batch;
|
||||
}
|
||||
|
||||
public String getSpec() {
|
||||
return spec;
|
||||
}
|
||||
|
||||
public void setSpec(String spec) {
|
||||
this.spec = spec;
|
||||
}
|
||||
|
||||
public String getTexture() {
|
||||
return texture;
|
||||
}
|
||||
|
||||
public void setTexture(String texture) {
|
||||
this.texture = texture;
|
||||
}
|
||||
|
||||
public String getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getIsPrint() {
|
||||
return isPrint;
|
||||
}
|
||||
|
||||
public void setIsPrint(String isPrint) {
|
||||
this.isPrint = isPrint;
|
||||
}
|
||||
|
||||
public String getCreateUser() {
|
||||
return createUser;
|
||||
}
|
||||
|
||||
public void setCreateUser(String createUser) {
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public LocalDateTime getCreatedDateTime() {
|
||||
return createdDateTime;
|
||||
}
|
||||
|
||||
public void setCreatedDateTime(LocalDateTime createdDateTime) {
|
||||
this.createdDateTime = createdDateTime;
|
||||
}
|
||||
|
||||
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 static final String HANDLE = "HANDLE";
|
||||
|
||||
public static final String SITE = "SITE";
|
||||
|
||||
public static final String FACTORY = "FACTORY";
|
||||
|
||||
public static final String ITEM = "ITEM";
|
||||
|
||||
public static final String BATCH = "BATCH";
|
||||
|
||||
public static final String SPEC = "SPEC";
|
||||
|
||||
public static final String TEXTURE = "TEXTURE";
|
||||
|
||||
public static final String SUPPLIER = "SUPPLIER";
|
||||
|
||||
public static final String LABEL = "LABEL";
|
||||
|
||||
public static final String IS_PRINT = "IS_PRINT";
|
||||
|
||||
public static final String CREATE_USER = "CREATE_USER";
|
||||
|
||||
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
|
||||
|
||||
public static final String MODIFY_USER = "MODIFY_USER";
|
||||
|
||||
public static final String MODIFIED_DATE_TIME = "MODIFIED_DATE_TIME";
|
||||
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.handle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ItemBatch{" +
|
||||
"handle = " + handle +
|
||||
", site = " + site +
|
||||
", factory = " + factory +
|
||||
", item = " + item +
|
||||
", batch = " + batch +
|
||||
", spec = " + spec +
|
||||
", texture = " + texture +
|
||||
", supplier = " + supplier +
|
||||
", label = " + label +
|
||||
", isPrint = " + isPrint +
|
||||
", createUser = " + createUser +
|
||||
", createdDateTime = " + createdDateTime +
|
||||
", modifyUser = " + modifyUser +
|
||||
", modifiedDateTime = " + modifiedDateTime +
|
||||
"}";
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package com.foreverwin.mesnac.common.service;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.foreverwin.mesnac.common.model.ItemBatchdDto;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 物料批次表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author Leon.L
|
||||
* @since 2021-06-18
|
||||
*/
|
||||
public interface ItemBatchServiceSave extends IService<ItemBatchdDto> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package com.foreverwin.mesnac.common.service.impl;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.foreverwin.mesnac.common.mapper.ItemBatchMapperSave;
|
||||
import com.foreverwin.mesnac.common.model.ItemBatchdDto;
|
||||
import com.foreverwin.mesnac.common.service.ItemBatchServiceSave;
|
||||
import com.foreverwin.mesnac.common.util.StringUtil;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 物料批次表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author Leon.L
|
||||
* @since 2021-06-18
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class ItemBatchServiceImplSave extends ServiceImpl<ItemBatchMapperSave, ItemBatchdDto> implements ItemBatchServiceSave {
|
||||
|
||||
}
|
@ -0,0 +1,227 @@
|
||||
<?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.common.mapper.ItemBatchMapperSave">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.common.model.ItemBatchdDto">
|
||||
<id column="HANDLE" property="handle" />
|
||||
<result column="SITE" property="site" />
|
||||
<result column="FACTORY" property="factory" />
|
||||
<result column="ITEM" property="item" />
|
||||
<result column="BATCH" property="batch" />
|
||||
<result column="SPEC" property="spec" />
|
||||
<result column="TEXTURE" property="texture" />
|
||||
<result column="SUPPLIER" property="supplier" />
|
||||
<result column="LABEL" property="label" />
|
||||
<result column="IS_PRINT" property="isPrint" />
|
||||
<result column="CREATE_USER" property="createUser" />
|
||||
<result column="CREATED_DATE_TIME" property="createdDateTime" />
|
||||
<result column="MODIFY_USER" property="modifyUser" />
|
||||
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
HANDLE, SITE, FACTORY, ITEM, BATCH, SPEC, TEXTURE, SUPPLIER, LABEL, IS_PRINT, CREATE_USER, CREATED_DATE_TIME, MODIFY_USER, MODIFIED_DATE_TIME
|
||||
</sql>
|
||||
|
||||
|
||||
<insert id="insert" parameterType="com.foreverwin.mesnac.common.model.ItemBatchdDto">
|
||||
INSERT INTO Z_ITEM_BATCH
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
HANDLE,
|
||||
<if test="site!=null">SITE,</if>
|
||||
<if test="factory!=null">FACTORY,</if>
|
||||
<if test="item!=null">ITEM,</if>
|
||||
<if test="batch!=null">BATCH,</if>
|
||||
<if test="spec!=null">SPEC,</if>
|
||||
<if test="texture!=null">TEXTURE,</if>
|
||||
<if test="supplier!=null">SUPPLIER,</if>
|
||||
<if test="label!=null">LABEL,</if>
|
||||
<if test="isPrint!=null">IS_PRINT,</if>
|
||||
<if test="createUser!=null">CREATE_USER,</if>
|
||||
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
|
||||
<if test="modifyUser!=null">MODIFY_USER,</if>
|
||||
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{handle},
|
||||
<if test="site!=null">#{site},</if>
|
||||
<if test="factory!=null">#{factory},</if>
|
||||
<if test="item!=null">#{item},</if>
|
||||
<if test="batch!=null">#{batch},</if>
|
||||
<if test="spec!=null">#{spec},</if>
|
||||
<if test="texture!=null">#{texture},</if>
|
||||
<if test="supplier!=null">#{supplier},</if>
|
||||
<if test="label!=null">#{label},</if>
|
||||
<if test="isPrint!=null">#{isPrint},</if>
|
||||
<if test="createUser!=null">#{createUser},</if>
|
||||
<if test="createdDateTime!=null">#{createdDateTime},</if>
|
||||
<if test="modifyUser!=null">#{modifyUser},</if>
|
||||
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.common.model.ItemBatchdDto">
|
||||
INSERT INTO Z_ITEM_BATCH
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<include refid="Base_Column_List"></include>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{handle},
|
||||
#{site},
|
||||
#{factory},
|
||||
#{item},
|
||||
#{batch},
|
||||
#{spec},
|
||||
#{texture},
|
||||
#{supplier},
|
||||
#{label},
|
||||
#{isPrint},
|
||||
#{createUser},
|
||||
#{createdDateTime},
|
||||
#{modifyUser},
|
||||
#{modifiedDateTime},
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
||||
<update id="updateById">
|
||||
UPDATE Z_ITEM_BATCH <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.site!=null">SITE=#{et.site},</if>
|
||||
<if test="et.factory!=null">FACTORY=#{et.factory},</if>
|
||||
<if test="et.item!=null">ITEM=#{et.item},</if>
|
||||
<if test="et.batch!=null">BATCH=#{et.batch},</if>
|
||||
<if test="et.spec!=null">SPEC=#{et.spec},</if>
|
||||
<if test="et.texture!=null">TEXTURE=#{et.texture},</if>
|
||||
<if test="et.supplier!=null">SUPPLIER=#{et.supplier},</if>
|
||||
<if test="et.label!=null">LABEL=#{et.label},</if>
|
||||
<if test="et.isPrint!=null">IS_PRINT=#{et.isPrint},</if>
|
||||
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
|
||||
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</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_ITEM_BATCH <trim prefix="SET" suffixOverrides=",">
|
||||
SITE=#{et.site},
|
||||
FACTORY=#{et.factory},
|
||||
ITEM=#{et.item},
|
||||
BATCH=#{et.batch},
|
||||
SPEC=#{et.spec},
|
||||
TEXTURE=#{et.texture},
|
||||
SUPPLIER=#{et.supplier},
|
||||
LABEL=#{et.label},
|
||||
IS_PRINT=#{et.isPrint},
|
||||
CREATE_USER=#{et.createUser},
|
||||
CREATED_DATE_TIME=#{et.createdDateTime},
|
||||
MODIFY_USER=#{et.modifyUser},
|
||||
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
|
||||
</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_ITEM_BATCH <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.site!=null">SITE=#{et.site},</if>
|
||||
<if test="et.factory!=null">FACTORY=#{et.factory},</if>
|
||||
<if test="et.item!=null">ITEM=#{et.item},</if>
|
||||
<if test="et.batch!=null">BATCH=#{et.batch},</if>
|
||||
<if test="et.spec!=null">SPEC=#{et.spec},</if>
|
||||
<if test="et.texture!=null">TEXTURE=#{et.texture},</if>
|
||||
<if test="et.supplier!=null">SUPPLIER=#{et.supplier},</if>
|
||||
<if test="et.label!=null">LABEL=#{et.label},</if>
|
||||
<if test="et.isPrint!=null">IS_PRINT=#{et.isPrint},</if>
|
||||
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
|
||||
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</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.factory!=null"> AND FACTORY=#{ew.entity.factory}</if>
|
||||
<if test="ew.entity.item!=null"> AND ITEM=#{ew.entity.item}</if>
|
||||
<if test="ew.entity.batch!=null"> AND BATCH=#{ew.entity.batch}</if>
|
||||
<if test="ew.entity.spec!=null"> AND SPEC=#{ew.entity.spec}</if>
|
||||
<if test="ew.entity.texture!=null"> AND TEXTURE=#{ew.entity.texture}</if>
|
||||
<if test="ew.entity.supplier!=null"> AND SUPPLIER=#{ew.entity.supplier}</if>
|
||||
<if test="ew.entity.label!=null"> AND LABEL=#{ew.entity.label}</if>
|
||||
<if test="ew.entity.isPrint!=null"> AND IS_PRINT=#{ew.entity.isPrint}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</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>
|
||||
<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_ITEM_BATCH WHERE HANDLE=#{handle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByMap">
|
||||
DELETE FROM Z_ITEM_BATCH
|
||||
<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_ITEM_BATCH
|
||||
<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.factory!=null"> AND FACTORY=#{ew.entity.factory}</if>
|
||||
<if test="ew.entity.item!=null"> AND ITEM=#{ew.entity.item}</if>
|
||||
<if test="ew.entity.batch!=null"> AND BATCH=#{ew.entity.batch}</if>
|
||||
<if test="ew.entity.spec!=null"> AND SPEC=#{ew.entity.spec}</if>
|
||||
<if test="ew.entity.texture!=null"> AND TEXTURE=#{ew.entity.texture}</if>
|
||||
<if test="ew.entity.supplier!=null"> AND SUPPLIER=#{ew.entity.supplier}</if>
|
||||
<if test="ew.entity.label!=null"> AND LABEL=#{ew.entity.label}</if>
|
||||
<if test="ew.entity.isPrint!=null"> AND IS_PRINT=#{ew.entity.isPrint}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</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>
|
||||
<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_ITEM_BATCH WHERE HANDLE IN (
|
||||
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
||||
</foreach>)
|
||||
</delete>
|
||||
<!-- BaseMapper标准查询/修改/删除 -->
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue