PolicyLogDto.java 354 Bytes
Newer Older
翁国栋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package cn.timer.api.dto.insure;

import lombok.Data;

import java.util.Date;

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/4/11 16:39
 */
@Data
public class PolicyLogDto {
    private Integer id;
    private String policyNo;
    private String returnCode;
    private String returnMsg;
    private Integer type;
    private Date createTime;

}