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:07
|
* @Description
|
*/
|
|
@TableName(value="st_consume_ic_month", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@Schema(name = "IC卡消费月统计")
|
public class StConsumeIcMonth implements BaseEntity {
|
|
public static final long serialVersionUID = 202412251434001L;
|
/**
|
* 主键
|
*/
|
public Long id;
|
|
/**
|
* 外键,指向农户
|
*/
|
public Long clientId;
|
|
/**
|
* 外键,指向农户IC卡
|
*/
|
public Long cardId;
|
|
/**
|
* 年度
|
*/
|
public Integer year;
|
|
/**
|
* 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;
|
|
}
|