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 14:52
|
* @Description
|
*/
|
|
|
@TableName(value="st_recharge_ic_year", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@Schema(name = "IC卡充值年统计")
|
public class StRechargeIcYear implements BaseEntity {
|
|
public static final long serialVersionUID = 202412251453001L;
|
|
/**
|
* 主键
|
*/
|
public Long id;
|
|
/**
|
* 外键,指向农户
|
*/
|
public Long clientId;
|
|
/**
|
* 外键,指向农户IC卡
|
*/
|
public Long cardId;
|
|
/**
|
* 年度
|
*/
|
public Integer year;
|
|
/**
|
* 年充值统计
|
*/
|
public Double amount;
|
|
/**
|
* 年赠送统计
|
*/
|
public Double gift;
|
|
/**
|
* 年充值次数
|
*/
|
public Integer times;
|
|
}
|