Sfoglia il codice sorgente

fix 计费单商品

he2802 3 anni fa
parent
commit
a767190495

+ 2 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/grade/domain/ClassGrade.java

@@ -72,4 +72,6 @@ private static final long serialVersionUID=1L;
 
     /** 班級編碼 */
     private String gradeCode;
+    /** 已经报名学员 */
+    private Integer studentNum;
 }

+ 1 - 2
zhongzheng-system/src/main/java/com/zhongzheng/modules/order/domain/OrderGoods.java

@@ -73,6 +73,5 @@ private static final long serialVersionUID=1L;
     private String remark;
     /** 班级id */
     private Long classId;
-    /** 商品id */
-    private List<Long> orderGoodsIds;
+   
 }

+ 1 - 0
zhongzheng-system/src/main/resources/mapper/modules/grade/ClassGradeMapper.xml

@@ -24,6 +24,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="remark" column="remark"/>
         <result property="interfaceAccountId" column="interface_account_id"/>
         <result property="interfacePeriodId" column="interface_period_id"/>
+        <result property="studentNum" column="student_num"/>
     </resultMap>
 
     <resultMap type="com.zhongzheng.modules.grade.vo.ClassGradeVo" id="ClassGradeVoResult">