Commit 68ba009b by jianan

保费到期提醒2

parent 68cda857
package com.yd.csf.service.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
/**
* 保单续期提醒发送批次表
*
* @TableName renewal_remind_batch
*/
@TableName(value = "renewal_remind_batch")
@Data
public class RenewalRemindBatch implements Serializable {
/**
* 主键
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 批次业务唯一ID
*/
private String batchBizId;
/**
* 执行月(yyyy-MM)
*/
private String bizMonth;
/**
* 本次提醒窗口起(M+1月1号)
*/
private LocalDate windowStart;
/**
* 本次提醒窗口止(M+2月月末)
*/
private LocalDate windowEnd;
/**
* 清单保单条数
*/
private Integer policyCount;
/**
* 因数据异常跳过的保单条数
*/
private Integer skippedCount;
/**
* 实际收件人邮箱(逗号分隔快照)
*/
private String recipients;
/**
* 附件文件名
*/
private String fileName;
/**
* 发送状态:SUCCESS-成功 FAIL-失败 EMPTY-无到期保单
*/
private String status;
/**
* 失败原因摘要
*/
private String errorMsg;
/**
* 发送时间
*/
private LocalDateTime sendTime;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 更新时间
*/
private LocalDateTime updateTime;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment