package com.dy.pipIrrGlobal.pojoSt; import com.baomidou.mybatisplus.annotation.TableName; import com.dy.common.po.BaseEntity; import io.swagger.v3.oas.annotations.media.Schema; import lombok.*; /** * @Author: liurunyu * @Date: 2024/12/25 18:08 * @Description */ @TableName(value="st_consume_client_day", autoResultMap = true) @Data @Builder @ToString @NoArgsConstructor @AllArgsConstructor @Schema(name = "农户消费日统计") public class StConsumeClientDay implements BaseEntity { public static final long serialVersionUID = 202412251437001L; /** * 主键 */ public Long id; /** * 外键,指向农户 */ public Long clientId; /** * 年度 */ public Integer year; /** * 月份 */ public Integer month; /** * 1号消费统计 */ public Double amount1; /** * 1号消费次数 */ public Integer times1; /** * 2号消费统计 */ public Double amount2; /** * 2号消费次数 */ public Integer times2; /** * 3号消费统计 */ public Double amount3; /** * 3号消费次数 */ public Integer times3; /** * 4号消费统计 */ public Double amount4; /** * 4号消费次数 */ public Integer times4; /** * 5号消费统计 */ public Double amount5; /** * 5号消费次数 */ public Integer times5; /** * 6号消费统计 */ public Double amount6; /** * 6号消费次数 */ public Integer times6; /** * 7号消费统计 */ public Double amount7; /** * 7号消费次数 */ public Integer times7; /** * 8号消费统计 */ public Double amount8; /** * 8号消费次数 */ public Integer times8; /** * 9号消费统计 */ public Double amount9; /** * 9号消费次数 */ public Integer times9; /** * 10号消费统计 */ public Double amount10; /** * 10号消费次数 */ public Integer times10; /** * 11号消费统计 */ public Double amount11; /** * 11号消费次数 */ public Integer times11; /** * 12号消费统计 */ public Double amount12; /** * 12号消费次数 */ public Integer times12; /** * 13号消费统计 */ public Double amount13; /** * 13号消费次数 */ public Integer times13; /** * 14号消费统计 */ public Double amount14; /** * 14号消费次数 */ public Integer times14; /** * 15号消费统计 */ public Double amount15; /** * 15号消费次数 */ public Integer times15; /** * 16号消费统计 */ public Double amount16; /** * 16号消费次数 */ public Integer times16; /** * 17号消费统计 */ public Double amount17; /** * 17号消费次数 */ public Integer times17; /** * 18号消费统计 */ public Double amount18; /** * 18号消费次数 */ public Integer times18; /** * 19号消费统计 */ public Double amount19; /** * 19号消费次数 */ public Integer times19; /** * 20号消费统计 */ public Double amount20; /** * 20号消费次数 */ public Integer times20; /** * 21号消费统计 */ public Double amount21; /** * 21号消费次数 */ public Integer times21; /** * 22号消费统计 */ public Double amount22; /** * 22号消费次数 */ public Integer times22; /** * 23号消费统计 */ public Double amount23; /** * 23号消费次数 */ public Integer times23; /** * 24号消费统计 */ public Double amount24; /** * 24号消费次数 */ public Integer times24; /** * 25号消费统计 */ public Double amount25; /** * 25号消费次数 */ public Integer times25; /** * 26号消费统计 */ public Double amount26; /** * 26号消费次数 */ public Integer times26; /** * 27号消费统计 */ public Double amount27; /** * 27号消费次数 */ public Integer times27; /** * 28号消费统计 */ public Double amount28; /** * 28号消费次数 */ public Integer times28; /** * 29号消费统计 */ public Double amount29; /** * 29号消费次数 */ public Integer times29; /** * 30号消费统计 */ public Double amount30; /** * 30号消费次数 */ public Integer times30; /** * 31号消费统计 */ public Double amount31; /** * 31号消费次数 */ public Integer times31; }