Commit e24f7b20 authored by 赵啸非's avatar 赵啸非

添加同步办件进度查询

parent 868ac8a5
......@@ -427,17 +427,16 @@ CREATE TABLE `mortals_sys_dowork_stat` (
`area_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '区域编码',
`area_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '区域名称',
`waitTime` int(9) DEFAULT '0' COMMENT '平均等待时间,单位s',
`matter_num` int(9) NOT NULL COMMENT '事项数量',
`dowork_num` int(9) NOT NULL COMMENT '业务办结总量',
`satisfaction_rate` varchar(32) NOT NULL COMMENT '满意率',
`year` int(9) NOT NULL COMMENT '年',
`month` int(9) NOT NULL COMMENT '月',
`day` int(9) NOT NULL COMMENT '日',
`matter_num` int(9) DEFAULT NULL COMMENT '事项数量',
`dowork_num` int(9) DEFAULT NULL COMMENT '业务办结总量',
`satisfaction_rate` varchar(32) DEFAULT NULL COMMENT '满意率',
`year` int(9) DEFAULT NULL COMMENT '年',
`month` int(9) DEFAULT NULL COMMENT '月',
`day` int(9) DEFAULT NULL COMMENT '日',
`create_user_id` bigint(20) DEFAULT NULL COMMENT '创建用户',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
,KEY `year` (`year`) USING BTREE
,KEY `month` (`month`) USING BTREE
,KEY `day` (`day`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='办件统计';
......@@ -19,5 +19,17 @@ public class DoworkStatVo extends BaseEntityLong {
/** ID列表 */
private List <Long> idList;
/** 开始 年 */
private Integer yearStart;
/** 结束 年 */
private Integer yearEnd;
/** 开始 月 */
private Integer monthStart;
/** 结束 月 */
private Integer monthEnd;
}
\ No newline at end of file
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