package com.dy.pipIrrGlobal.pojoSe;
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
import com.alibaba.fastjson2.writer.ObjectWriterImplToString;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.dy.common.po.BaseEntity;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.Positive;
|
import lombok.*;
|
import org.hibernate.validator.constraints.Length;
|
|
import java.util.Date;
|
|
/**
|
* 水卡充值表;
|
*/
|
|
@TableName(value="se_recharge", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@Schema(name = "水卡充值实体")
|
public class SeRecharge implements BaseEntity {
|
|
public static final long serialVersionUID = 20231191728001L;
|
|
/**
|
* 主键
|
*/
|
@JSONField(serializeUsing= ObjectWriterImplToString.class)
|
@TableId(type = IdType.INPUT)
|
@Schema(description = "实体id", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
private Long id;
|
|
/**
|
* 水卡编号
|
*/
|
@Schema(description = "水卡编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@NotBlank(message = "水卡编号不能为空")
|
private String cardnum;
|
|
/**
|
* 农户编号
|
*/
|
@Schema(description = "农户编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@NotBlank(message = "农户编号不能为空")
|
private String clientnum;
|
|
/**
|
* 卡片余额
|
*/
|
@Schema(description = "卡片余额", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@NotNull(message = "卡片余额不能为空")
|
@Length(message = "卡片余额不小于{min}", min = 0)
|
private Float money;
|
|
/**
|
* 充值金额
|
*/
|
@Schema(description = "充值金额", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@NotNull(message = "充值金额不能为空")
|
@Length(message = "充值金额不小于{min}", min = 0)
|
private Float amount;
|
|
/**
|
* 赠送金额
|
*/
|
@Schema(description = "赠送金额", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Length(message = "赠送金额不小于{min}", min = 0)
|
private Float gift;
|
|
/**
|
* 充值后余额
|
*/
|
@Schema(description = "充值后余额", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Length(message = "充值后余额不小于{min}", min = 0)
|
private Float afterrecharge;
|
|
/**
|
* 付款方式编号
|
*/
|
@Schema(description = "付款方式编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Length(message = "付款方式编号不大于{max},不小于{min}", min = 1, max = 4)
|
private Long paymentid;
|
|
/**
|
* 水价
|
*/
|
@Schema(description = "水价", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Length(message = "水价不小于{min}", min = 0)
|
private Float price;
|
|
/**
|
* 备注信息
|
*/
|
@Schema(description = "备注", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Length(message = "备注长度小于{max}字", min = 1, max = 200)
|
private String remarks;
|
|
/**
|
* 操作人编号
|
*/
|
@Schema(description = "操作人编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
@Positive(message = "操作人编号必须为大于0的整数")
|
private Long operator;
|
|
/**
|
* 操作时间
|
*/
|
@Schema(description = "操作时间", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
private Date operatedt;
|
}
|