package com.panzhihua.service_community.model.dos; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * @title: ComPensionAuthStatisticsDO 社区政务》养老认证》认证统计表 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目 * @description: 社区政务》养老认证》认证统计表 * @author: txb * @date: 2021/09/07 16:31 */ @Data @TableName("com_pension_auth_statistics") public class ComPensionAuthStatisticsDO implements Serializable { private static final long serialVersionUID = 1L; /** * 主键id */ @TableId(type = IdType.ASSIGN_ID) private Long id; /** * 年份 */ private Integer year; /** * 月份 */ private Integer month; /** * 总人数 */ private Integer sum; /** * 认证人数 */ private Integer authSum; /** * 未认证人数 */ private Integer noAuthSum; /** * 创建时间 */ @TableField(fill = FieldFill.INSERT) private Date createAt; /** * 社区id */ private Long communityId; @Override public String toString() { return "ComPensionAuthStatisticsDO{" + "id=" + id + ", year=" + year + ", month=" + month + ", sum=" + sum + ", authSum=" + authSum + ", noAuthSum=" + noAuthSum + ", createAt=" + createAt + ", communityId=" + communityId + "}"; } }