feat(BdWares-Sale): 商品列表移除系统类型字段

This commit is contained in:
woody 2025-05-21 14:28:31 +08:00 committed by cabbage
parent f57336f575
commit 8170453a4b
2 changed files with 0 additions and 10 deletions

View File

@ -218,12 +218,6 @@ public class WaresVo {
*/ */
private String waresStatusVal; private String waresStatusVal;
/**
* 系统类型0=会员系统1=海圣优选
*/
@Excel(name = "系统类型", readConverterExp = "0=会员系统,1=海圣优选")
private Integer systemType;
/** /**
* 预计时间到货时间 * 预计时间到货时间
*/ */

View File

@ -81,7 +81,6 @@
<result column="IS_MAKER_GIFT" property="isMakerGift"/> <result column="IS_MAKER_GIFT" property="isMakerGift"/>
<result column="TEMP_NAME" property="tempName"/> <result column="TEMP_NAME" property="tempName"/>
<result column="MAKER_INCOME" property="makerIncome"/> <result column="MAKER_INCOME" property="makerIncome"/>
<result column="SYSTEM_TYPE" property="systemType"/>
<result column="WARES_STATUS" property="waresStatus"/> <result column="WARES_STATUS" property="waresStatus"/>
<result column="WARES_APPROVER" property="waresApprover"/> <result column="WARES_APPROVER" property="waresApprover"/>
<result column="WARES_APPROVAL_TIME" property="waresApprovalTime"/> <result column="WARES_APPROVAL_TIME" property="waresApprovalTime"/>
@ -161,9 +160,6 @@
left join BD_AREA_CLASSIFY ac on ac.PK_ID = bw.PK_AREA_CLASSIFY left join BD_AREA_CLASSIFY ac on ac.PK_ID = bw.PK_AREA_CLASSIFY
left join BD_SPECIAL_CURRENCY sc on sc.pk_Id = we.PK_SPECIAL_CURRENCY left join BD_SPECIAL_CURRENCY sc on sc.pk_Id = we.PK_SPECIAL_CURRENCY
where bw.del_flag = 0 where bw.del_flag = 0
<if test="systemType != null">
and we.SYSTEM_TYPE = #{systemType}
</if>
<if test="isRecommend != null"> <if test="isRecommend != null">
and bw.IS_RECOMMEND = #{isRecommend} and bw.IS_RECOMMEND = #{isRecommend}
</if> </if>