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