java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java
@@ -68,6 +68,7 @@ private String isFixed; private String isFixedName; private String timesId; private String communityId; private List<ResourceStoreTimesDto> times; @@ -424,4 +425,12 @@ public void setTimes(List<ResourceStoreTimesDto> times) { this.times = times; } public String getCommunityId() { return communityId; } public void setCommunityId(String communityId) { this.communityId = communityId; } } java110-db/src/main/resources/mapper/store/AllocationStorehouseServiceDaoImplMapper.xml
@@ -151,6 +151,9 @@ <if test="storeId !=null and storeId != ''"> and t.store_id= #{storeId} </if> <if test="communityId !=null and communityId != ''"> and asa.community_id= #{communityId} </if> <if test="resId !=null and resId != ''"> and t.res_id= #{resId} </if> @@ -276,6 +279,10 @@ <if test="storeId !=null and storeId != ''"> and t.store_id= #{storeId} </if> <if test="communityId !=null and communityId != ''"> and asa.community_id= #{communityId} </if> <if test="resId !=null and resId != ''"> and t.res_id= #{resId} </if>