Commit e79a12df authored by 朱晨阳's avatar 朱晨阳

Merge remote-tracking branch 'origin/developer_bw' into developer_bw

parents 78ff0bdc 4fdb1e06
...@@ -48,4 +48,6 @@ public class HouseholdContractPageDto extends Page<HouseholdContract> { ...@@ -48,4 +48,6 @@ public class HouseholdContractPageDto extends Page<HouseholdContract> {
private String userId; private String userId;
private String contractNumber; private String contractNumber;
private String regionalCompaniesName; private String regionalCompaniesName;
//省份
private String province;
} }
...@@ -45,6 +45,9 @@ ...@@ -45,6 +45,9 @@
<if test="dto.regionalCompaniesName != null and dto.regionalCompaniesName !=''"> <if test="dto.regionalCompaniesName != null and dto.regionalCompaniesName !=''">
and hygf_household_contract.regional_companies_name like concat('%',#{dto.regionalCompaniesName},'%') and hygf_household_contract.regional_companies_name like concat('%',#{dto.regionalCompaniesName},'%')
</if> </if>
<if test="dto.province != null and dto.province !=''">
and php.project_address like concat ('%',#{dto.province},'%')
</if>
</where> </where>
<if test="dto.orderBy == null "> <if test="dto.orderBy == null ">
ORDER BY hygf_household_contract.rec_date DESC ORDER BY hygf_household_contract.rec_date DESC
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment