feat: 是否收费

dev_ksck_axxyy
chenhc 5 months ago
parent a7c96ebba6
commit fa6052aac7

@ -95,4 +95,6 @@ public class CompanyProductRelevanceRequest extends ListPageRequest {
* 0:1:2: * 0:1:2:
*/ */
private Integer codeCheck; private Integer codeCheck;
private Integer requireCost;
} }

@ -92,4 +92,6 @@ public class FilterUdiRelRequest extends ListPageRequest {
private String mjfs; private String mjfs;
private String categoryName; private String categoryName;
private String deviceRecordKey; private String deviceRecordKey;
private Integer requireCost;
} }

@ -595,6 +595,9 @@
<if test="purType != null"> <if test="purType != null">
and basic_udirel.purType = #{purType} and basic_udirel.purType = #{purType}
</if> </if>
<if test="requireCost != null">
and basic_products.requireCost = #{requireCost}
</if>
</where> </where>
ORDER BY modifyTime DESC ORDER BY modifyTime DESC
</select> </select>

@ -154,6 +154,9 @@
<if test="codeCheck != null"> <if test="codeCheck != null">
AND basic_products.requireScanCode = #{codeCheck} AND basic_products.requireScanCode = #{codeCheck}
</if> </if>
<if test="requireCost != null">
AND basic_products.requireCost = #{requireCost}
</if>
<if test="unionCode != '' and unionCode != null"> <if test="unionCode != '' and unionCode != null">
and ( and (
nameCode LIKE concat('%', #{unionCode}, '%') nameCode LIKE concat('%', #{unionCode}, '%')

Loading…
Cancel
Save