1.删除库存详情原始码字段

master
x_z 2 years ago
parent 52f27786aa
commit d2dcf47003

@ -98,12 +98,6 @@ public class InvProductDetailEntity {
@TableField(value = "invSpaceCode")
private String invSpaceCode;
/**
*
*/
@TableField(value = "originCode")
private String originCode;
/**
*
*/

@ -61,11 +61,6 @@ public class FilterInvProductDetailRequest extends ListPageRequest {
*/
private String invSpaceCode;
/**
*
*/
private String originCode;
/**
*
*/

@ -82,11 +82,6 @@ public class InvProductDetailResponse {
*/
private String invSpaceCode;
/**
*
*/
private String originCode;
/**
*
*/

@ -9,7 +9,7 @@
from inv_product_detail
<where>
<if test="code != null and code != ''">
AND originCode = #{code}
AND code = #{code}
</if>
<if test="mainAction != null and mainAction != ''">
AND mainAction = #{mainAction}
@ -38,9 +38,6 @@
<if test="invSpaceCode != null and invSpaceCode != ''">
AND invSpaceCode = #{invSpaceCode}
</if>
<if test="originCode != null and originCode != ''">
AND originCode = #{originCode}
</if>
<if test="batchNo != null and batchNo != ''">
AND batchNo = #{batchNo}
</if>

Loading…
Cancel
Save