liurunyu
5 天以前 7aab004601e77890b158f19d1735594a8326feaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
 
}