@ -48,4 +48,9 @@ public class CustomerGridFormDTO implements Serializable {
* 数据更新至: yyyy|yyyyMM|yyyyMMdd(08-21新增)
*/
private String dataEndTime;
/**
* 所有上级ID,用英文逗号分开(8.26新增)
private String allParentIds;
}
@ -94,9 +94,13 @@ public class DifficultyDataFormDTO implements Serializable {
private Integer eventHandledCount;
@ -121,4 +121,9 @@ public class EventDataFormDTO implements Serializable {
* 数据更新至: yyyy|yyyMM|yyyyMMdd 8.21增加字段
@ -79,4 +79,9 @@ public class OrgRankDataFormDTO implements Serializable {
* 满意率,最大值100,保留小数点后四位
private BigDecimal satisfactionRatio;
@ -73,4 +73,9 @@ public class PartyUserRankDataFormDTO implements Serializable {
* 名
private String name;
@ -78,4 +78,8 @@ public class ScreenCustomerGridEntity extends BaseEpmetEntity {
@ -127,4 +127,8 @@ public class ScreenDifficultyDataEntity extends BaseEpmetEntity {
@ -144,4 +144,8 @@ public class ScreenEventDataEntity extends BaseEpmetEntity {
@ -109,4 +109,8 @@ public class ScreenOrgRankDataEntity extends BaseEpmetEntity {
@ -98,4 +98,8 @@ public class ScreenPartyUserRankDataEntity extends BaseEpmetEntity {
@ -29,7 +29,8 @@
CREATED_TIME,
UPDATED_BY,
UPDATED_TIME,
DATA_END_TIME
DATA_END_TIME,
ALL_PARENT_IDS
) values
<foreach collection="list" item="item" index="index" separator=",">
(
@ -47,7 +48,8 @@
now(),
'APP_USER',
#{item.dataEndTime}
#{item.dataEndTime},
#{item.allParentIds}
)
</foreach>
</insert>
@ -35,7 +35,8 @@
LATEST_OPERATE_DESC,
@ -63,7 +64,8 @@
#{item.latestOperateDesc},
@ -38,7 +38,8 @@
EVENT_STATUS_CODE,
EVENT_STATUS_DESC,
@ -69,7 +70,8 @@
#{item.eventStatusCode},
#{item.eventStatusDesc},
CREATED_BY,
UPDATED_TIME
@ -59,7 +60,8 @@
now()
@ -51,7 +52,8 @@