forked from rongchao/epmet-cloud-rizhao
				
			
				 26 changed files with 377 additions and 120 deletions
			
			
		@ -0,0 +1,26 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Author zxc | 
				
			||||
 | 
					 * @DateTime 2021/12/29 10:56 上午 | 
				
			||||
 | 
					 * @DESC | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class DailyStatisticalVoteJob implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private static final long serialVersionUID = -3685299478100771134L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String dateId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String startDate; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String endDate; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					} | 
				
			||||
@ -0,0 +1,70 @@ | 
				
			|||||
 | 
					package com.epmet.dto.result; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import com.epmet.commons.tools.constant.NumConstant; | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					import java.util.Date; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Author zxc | 
				
			||||
 | 
					 * @DateTime 2021/12/29 1:52 下午 | 
				
			||||
 | 
					 * @DESC | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class DailyStatisticalVoteJobResultDTO implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private static final long serialVersionUID = 5266996778036448163L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private String issueId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 统计日期 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Date statisticalDate; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 到该日的总赞成数 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer supportCount; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 到该日的总反对数 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer oppositionCount; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 到该日的总票数 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer totalCount; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 该日增量 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer todayIncrement; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 该日赞成增量 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer supportIncrement; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 该日反对增量 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer oppositionIncrement; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 应表决数 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private Integer votableCount; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    public DailyStatisticalVoteJobResultDTO() { | 
				
			||||
 | 
					        this.supportCount = NumConstant.ZERO; | 
				
			||||
 | 
					        this.oppositionCount = NumConstant.ZERO; | 
				
			||||
 | 
					        this.totalCount = NumConstant.ZERO; | 
				
			||||
 | 
					        this.todayIncrement = NumConstant.ZERO; | 
				
			||||
 | 
					        this.supportIncrement = NumConstant.ZERO; | 
				
			||||
 | 
					        this.oppositionIncrement = NumConstant.ZERO; | 
				
			||||
 | 
					        this.votableCount = NumConstant.ZERO; | 
				
			||||
 | 
					    } | 
				
			||||
 | 
					} | 
				
			||||
@ -1,90 +0,0 @@ | 
				
			|||||
/** | 
					 | 
				
			||||
 * Copyright 2018 人人开源 https://www.renren.io
 | 
					 | 
				
			||||
 * <p> | 
					 | 
				
			||||
 * This program is free software: you can redistribute it and/or modify | 
					 | 
				
			||||
 * it under the terms of the GNU General Public License as published by | 
					 | 
				
			||||
 * the Free Software Foundation, either version 3 of the License, or | 
					 | 
				
			||||
 * (at your option) any later version. | 
					 | 
				
			||||
 * <p> | 
					 | 
				
			||||
 * This program is distributed in the hope that it will be useful, | 
					 | 
				
			||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					 | 
				
			||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					 | 
				
			||||
 * GNU General Public License for more details. | 
					 | 
				
			||||
 * <p> | 
					 | 
				
			||||
 * You should have received a copy of the GNU General Public License | 
					 | 
				
			||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					 | 
				
			||||
 */ | 
					 | 
				
			||||
 | 
					 | 
				
			||||
package com.epmet.entity; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
import com.baomidou.mybatisplus.annotation.TableName; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; | 
					 | 
				
			||||
import lombok.Data; | 
					 | 
				
			||||
import lombok.EqualsAndHashCode; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
import java.util.Date; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
/** | 
					 | 
				
			||||
 * 网格员例行工作 | 
					 | 
				
			||||
 * | 
					 | 
				
			||||
 * @author generator generator@elink-cn.com | 
					 | 
				
			||||
 * @since v1.0.0 2021-10-19 | 
					 | 
				
			||||
 */ | 
					 | 
				
			||||
@Data | 
					 | 
				
			||||
@EqualsAndHashCode(callSuper=false) | 
					 | 
				
			||||
@TableName("patrol_routine_work") | 
					 | 
				
			||||
public class GridUserWorkEntity extends BaseEpmetEntity { | 
					 | 
				
			||||
 | 
					 | 
				
			||||
	private static final long serialVersionUID = 1L; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * 客户ID | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private String customerId; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * 网格ID | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private String gridId; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * gridId的PID | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private String pids; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
	/** | 
					 | 
				
			||||
	 * 用户Id user.id 谁创建的 | 
					 | 
				
			||||
	 */ | 
					 | 
				
			||||
	private String userId; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
	/** | 
					 | 
				
			||||
	 * 事项名称 | 
					 | 
				
			||||
	 */ | 
					 | 
				
			||||
	private String title; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * 发生日期 格式为“YYYY-MM-DD” | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private Date happenTime; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * 有无变动(异常)1:是、0:否 | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private Integer isNormal; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
    /** | 
					 | 
				
			||||
     * 备注说明 | 
					 | 
				
			||||
     */ | 
					 | 
				
			||||
	private String workContent; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
	/** | 
					 | 
				
			||||
	 * 经度 | 
					 | 
				
			||||
	 */ | 
					 | 
				
			||||
	private String longitude; | 
					 | 
				
			||||
	/** | 
					 | 
				
			||||
	 * 纬度 | 
					 | 
				
			||||
	 */ | 
					 | 
				
			||||
	private String latitude; | 
					 | 
				
			||||
 | 
					 | 
				
			||||
} | 
					 | 
				
			||||
					Loading…
					
					
				
		Reference in new issue