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 io.swagger.v3.oas.annotations.media.Schema; 
 | 
import jakarta.validation.constraints.Positive; 
 | 
import lombok.*; 
 | 
import org.hibernate.validator.constraints.Length; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @author ZhuBaoMin 
 | 
 * @date 2023/12/6 13:38 
 | 
 * @LastEditTime 2023/12/6 13:38 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
/** 
 | 
 * 水卡注销表 
 | 
 */ 
 | 
  
 | 
@TableName(value="se_cancel", autoResultMap = true) 
 | 
@Data 
 | 
@Builder 
 | 
@ToString 
 | 
@NoArgsConstructor 
 | 
@AllArgsConstructor 
 | 
@Schema(name = "水卡注销实体") 
 | 
public class SeCancel { 
 | 
    public static final long serialVersionUID = 1L; 
 | 
    /** 
 | 
    * 主键 
 | 
    */ 
 | 
    @JSONField(serializeUsing= ObjectWriterImplToString.class) 
 | 
    @TableId(type = IdType.INPUT) 
 | 
    @Schema(description = "实体id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) 
 | 
    @Positive(message = "主键必须为大于0的整数") 
 | 
    private Long id; 
 | 
  
 | 
    /** 
 | 
    * 水卡编号 
 | 
    */ 
 | 
    @Schema(description = "水卡编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED) 
 | 
    @Positive(message = "水卡编号必须为大于0的整数") 
 | 
    private Long cardid; 
 | 
  
 | 
    /** 
 | 
    * 退款金额 
 | 
    */ 
 | 
    @Schema(description = "退款金额", requiredMode = Schema.RequiredMode.REQUIRED) 
 | 
    @Length(message = "退款金额不小于{min}字", min = 1) 
 | 
    private Double refund; 
 | 
  
 | 
    /** 
 | 
    * 退款方式;1-现金 
 | 
    */ 
 | 
    @Schema(description = "退款方式", requiredMode = Schema.RequiredMode.NOT_REQUIRED) 
 | 
    @Positive(message = "退款方式必须为大于0的整数") 
 | 
    private Byte refundtype; 
 | 
  
 | 
    /** 
 | 
    * 备注信息 
 | 
    */ 
 | 
    @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; 
 | 
} 
 |