change před 3 roky
rodič
revize
56caa10ad7

+ 3 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/goods/bo/GoodsQueryBo.java

@@ -142,4 +142,7 @@ GoodsQueryBo extends BaseEntity {
 
 	@ApiModelProperty("用户ID")
 	private Long userId;
+
+	@ApiModelProperty("被补考的商品")
+	private Long makeGoodsId;
 }

+ 2 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/schedule/service/impl/ScheduleServiceImpl.java

@@ -206,6 +206,8 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
     public void updateExamSend(UserQueryBo bo) {
         //新考预约提醒
         sendExamSubscribe();
+
+        //
     }
 
     private void sendExamSubscribe() {

+ 3 - 0
zhongzheng-system/src/main/resources/mapper/modules/goods/GoodsMapper.xml

@@ -168,6 +168,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <if test="goodsType != null and goodsType != ''">
             AND g.goods_type = #{goodsType}
         </if>
+        <if test="makeGoodsId != null and makeGoodsId != ''">
+            AND g.make_goods_id = #{makeGoodsId}
+        </if>
         <if test="goodsName != null and goodsName != ''">
             AND g.goods_name like concat('%', #{goodsName}, '%')
         </if>