Browse Source

填报状态

夏文涛 1 year ago
parent
commit
c845be1511
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main/resources/mapper/template/WelcomeStudentMapper.xml

+ 2 - 1
src/main/resources/mapper/template/WelcomeStudentMapper.xml

@@ -14,13 +14,14 @@
         <result property="amountPayable" column="amount_payable"/>
         <result property="payAmount" column="pay_amount"/>
         <result property="dormitory" column="dormitory"/>
+        <result property="fillStatus" column="fill_status"/>
         <result property="accompanyNum" column="accompanyNum"/>
     </resultMap>
 
     <select id="queryStudentPageList" resultType="com.template.model.vo.StudentPageVo" resultMap="studentPageMap">
         select (select count(id) from welcome_accompany where student_card = ws.card_id) as accompanyNum,
         ws.id,ws.admiss_num,ws.name,ws.card_id,ws.college,ws.major,ws.classstr,
-        ws.traffic_method,ws.arrive,ws.amount_payable,ws.pay_amount,
+        ws.traffic_method,ws.arrive,ws.amount_payable,ws.pay_amount,ws.fill_status,
         CONCAT(wsd.build, '-', wsd.dormitory, '-', wsd.number) as dormitory
         from welcome_student ws
         left join welcome_bed wsd on wsd.deleted =0 and wsd.student_card = ws.card_id