定数包去掉无用代码

dev
郑明梁 2 years ago
parent e01ec88f65
commit dbbf5a8811

@ -10,7 +10,7 @@ import lombok.Data;
*
*/
@Data
@TableName(value = "udi_wms.basic_destiny_rel")
@TableName(value = "basic_destiny_rel")
public class BasicDestinyRelEntity {
@TableId(value = "id", type = IdType.INPUT)
private Long id;

@ -3,7 +3,7 @@
<mapper namespace="com.glxp.api.dao.basic.BasicDestinyRelMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicDestinyRelEntity">
<!--@mbg.generated-->
<!--@Table udi_wms.basic_destiny_rel-->
<!--@Table basic_destiny_rel-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="relId" jdbcType="BIGINT" property="relId" />
<result column="pId" jdbcType="BIGINT" property="pId" />

@ -3,7 +3,7 @@
<mapper namespace="com.glxp.api.dao.inout.IoDestinyProcessCodeMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inout.IoDestinyProcessCodeEntity">
<!--@mbg.generated-->
<!--@Table udi_wms.io_destiny_process_code-->
<!--@Table io_destiny_process_code-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="orderIdFk" jdbcType="VARCHAR" property="orderIdFk" />
<result column="bindRlFk" jdbcType="VARCHAR" property="bindRlFk" />

@ -3,7 +3,7 @@
<mapper namespace="com.glxp.api.dao.inout.IoDestinyProcessDetailMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inout.IoDestinyProcessDetailEntity">
<!--@mbg.generated-->
<!--@Table udi_wms.io_destiny_process_detail-->
<!--@Table io_destiny_process_detail-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="relId" jdbcType="BIGINT" property="relId" />
<result column="count" jdbcType="INTEGER" property="count" />

@ -3,7 +3,7 @@
<mapper namespace="com.glxp.api.dao.inout.IoDestinyProcessMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inout.IoDestinyProcessEntity">
<!--@mbg.generated-->
<!--@Table udi_wms.io_destiny_process-->
<!--@Table io_destiny_process-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="destinyId" jdbcType="BIGINT" property="destinyId" />
<result column="destinyNo" jdbcType="BIGINT" property="destinyNo" />

@ -11,7 +11,7 @@
left join auth_warehouse a1 on a1.code=io.curInv
<where>
<if test=" curInv!= '' and curInv != null">
and a1.name = #{curInv}
AND a1.name like concat('%', #{curInv}, '%')
</if>
</where>
</select>

Loading…
Cancel
Save