Browse Source

待审核已审核增加机构来源搜索

Qchen 2 years ago
parent
commit
883e2ae730

+ 2 - 0
src/main/java/com/ydtech/modules/order/entity/vo/OrderQueryVo.java

@@ -124,6 +124,8 @@ public class OrderQueryVo {
     private String attachStartDateStr;
     @ApiModelProperty(value = "起保结束时间")
     private String attachEndDateStr;
+    @ApiModelProperty(value = "机构来源")
+    private String managementSource;
 
 
     public LocalDate getEndDatePlusOneDay() {

+ 4 - 0
src/main/resources/mapper/modules/order/InsAreaCompanyMapper.xml

@@ -211,6 +211,10 @@
         <if test="params.agreeId != null and params.agreeId != ''">
             and iac.agreement_id = #{params.agreeId}
         </if>
+        <if test="params.managementSource != null and params.managementSource != ''">
+            and sd.management_source = #{params.managementSource}
+        </if>
+
 
     </select>