Commit eb6dd4a90349461a0889ce92874249c16197e7ae
1 parent
02501006
Update
Showing
1 changed file
with
6 additions
and
6 deletions
src/main/java/com/bsth/repository/schedule/SchedulePlanInfoRepository.java
| ... | ... | @@ -35,12 +35,12 @@ public interface SchedulePlanInfoRepository extends BaseRepository<SchedulePlanI |
| 35 | 35 | "info.cl_zbh as clZbh, " + |
| 36 | 36 | "group_concat(info.fcsj order by info.fcno) ccsj, " + |
| 37 | 37 | "group_concat(info.bc_type order by info.fcno) bctype, " + |
| 38 | - "group_concat(distinct info.j) jsyId, " + | |
| 39 | - "group_concat(distinct info.j_gh) jsyGh, " + | |
| 40 | - "group_concat(distinct info.j_name) jsyName, " + | |
| 41 | - "group_concat(distinct info.s) spyId, " + | |
| 42 | - "group_concat(distinct info.s_gh) spyGh, " + | |
| 43 | - "group_concat(distinct info.s_name) spyName, " + | |
| 38 | + "group_concat(distinct info.j order by info.fcno) jsyId, " + | |
| 39 | + "group_concat(distinct info.j_gh order by info.fcno) jsyGh, " + | |
| 40 | + "group_concat(distinct info.j_name order by info.fcno) jsyName, " + | |
| 41 | + "group_concat(distinct info.s order by info.fcno) spyId, " + | |
| 42 | + "group_concat(distinct info.s_gh order by info.fcno) spyGh, " + | |
| 43 | + "group_concat(distinct info.s_name order by info.fcno) spyName, " + | |
| 44 | 44 | "group_concat(info.fcno order by info.fcno) fcno, " + |
| 45 | 45 | "max(info.update_date) as updateDate, " + |
| 46 | 46 | "max(user.user_name) as updateUserName, " + | ... | ... |