|
|
|
@ -22,10 +22,17 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectCostCalculationEmployeePage" resultMap="costCalculationEmployeeResultMap"> |
|
|
|
<select id="selectCostCalculationEmployeePage" resultMap="costCalculationEmployeeResultMap"> |
|
|
|
select * from MES_COST_CALCULATION_EMPLOYEE |
|
|
|
select |
|
|
|
|
|
|
|
WORK_CENTER_NAME, |
|
|
|
|
|
|
|
LISTAGG ( TO_CHAR( EMPLOYEE_NAME ), ',' ) WITHIN GROUP ( ORDER BY EMPLOYEE_NAME ) AS EMPLOYEE_NAME, |
|
|
|
|
|
|
|
CREATE_USER_NAME, |
|
|
|
|
|
|
|
CREATE_TIME |
|
|
|
|
|
|
|
from MES_COST_CALCULATION_EMPLOYEE |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
is_deleted = 0 |
|
|
|
is_deleted = 0 |
|
|
|
</where> |
|
|
|
</where> |
|
|
|
|
|
|
|
GROUP BY |
|
|
|
|
|
|
|
WORK_CENTER_NAME,CREATE_USER_NAME,CREATE_TIME |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|