Browse Source

会员进度详情修改

anderx 1 year ago
parent
commit
99e7f35a9e

+ 4 - 4
src/main/java/com/goafanti/common/mapper/TaskDetailsMapper.xml

@@ -1189,8 +1189,8 @@ create_time = values(create_time)
         left join admin c on b.task_receiver=c.id
         left join t_order_mid d on b.order_no=d.order_no
         where (c.superior_id= #{aid} or c.id= #{aid})
-        <if test="name != null and name != ''">
-            and d.buyer_name like concat('%',#{name},'%')
+        <if test="userName != null and userName != ''">
+            and d.buyer_name like concat('%',#{userName},'%')
         </if>
         <if test="page_sql !=null">
             ${page_sql}
@@ -1202,8 +1202,8 @@ create_time = values(create_time)
         from task_details a left join t_order_task b on a.id =b.progress_tid
         left join admin c on b.task_receiver=c.id
         where (c.superior_id= #{aid} or c.id= #{aid})
-        <if test="name != null and name != ''">
-            and d.buyer_name like concat('%',#{name},'%')
+        <if test="userName != null and userName != ''">
+            and d.buyer_name like concat('%',#{userName},'%')
         </if>
     </select>
 </mapper>

+ 62 - 0
src/main/java/com/goafanti/techproject/bo/InputTaskDetailsBo.java

@@ -3,7 +3,69 @@ package com.goafanti.techproject.bo;
 public class InputTaskDetailsBo {
 
     private String aid;
+    /**
+     * 咨询师姓名*/
+    private String consultantName;
+    /**
+     * 合同编号*/
+    private String contractNo;
+    /**
+     * 客户名称*/
     private String userName;
+    /**
+     *服务年份
+     */
+    private String serviceYear;
+    /**
+     *  项目负责人
+     */
+    private String projectDebtorName;
+    /**
+     * 项目状态
+     */
+    private String projectStatus;
+    /**
+     *外包状态
+     */
+    private String outSourcingStatus;
+    /**
+     *更新时间
+     */
+    private String updateTime;
+    /**
+     *进度
+     */
+    private String progress;
+    /**
+     * 会员级别
+     */
+    private String applicationLevel;
+    /**
+     *高新公示
+     */
+    private String htStatus;
+    /**
+     * 汇算清缴 0=其他,1=待完成,2=已完成,3=合同无此项
+     */
+    private Integer finalSettlementStatus;
+    /**
+     * 加计扣除
+     */
+    private Integer adDeliverStatus;
+    /**
+     * 火炬统计
+     */
+    private Integer torchStatus;
+    /**
+     *统计年报
+     */
+    private Integer statisticsStatus;
+    /**
+     *高企年报
+     */
+    private Integer chStatus;
+
+
     private Integer pageSize;
     private Integer pageNo;