package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* 老人认证月统计实体类
|
*
|
* @author cedoo email:cedoo(a)qq.com
|
* @version 1.0
|
* @since 1.0
|
* @date 2021-06-10
|
*/
|
@Data
|
@TableName("com_elders_auth_statistics")
|
public class ComEldersAuthStatisticsDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id 列: id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 年份 列: year
|
*/
|
private Integer year;
|
/**
|
* 月份 列: month
|
*/
|
private Integer month;
|
/**
|
* 总人数 列: sum
|
*/
|
private Integer sum;
|
/**
|
* 认证人数 列: auth_sum
|
*/
|
private Integer authSum;
|
/**
|
* 未认证人数 列: no_auth_sum
|
*/
|
private Integer noAuthSum;
|
/**
|
* 创建时间 列: create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
/**
|
* 社区id 列: community_id
|
*/
|
private Long communityId;
|
|
}
|