InsureUserDto.java 530 Bytes
Newer Older
翁国栋 committed
1 2 3 4
package cn.timer.api.dto.insure;

import lombok.Data;

翁国栋 committed
5 6
import java.util.Date;

翁国栋 committed
7 8 9 10 11 12 13
/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/4/7 17:13
 */
@Data
public class InsureUserDto {
翁国栋 committed
14
    private Integer id;
翁国栋 committed
15 16 17 18 19
    private Integer policyId;
    private String benefitBasicPlan;
    private String benefitOccupationCategory;
    private Integer totalUser;
    private String[] oldIds;
翁国栋 committed
20
    private String policyNo;
翁国栋 committed
21 22
    private String name;
    private Date updateTime;
翁国栋 committed
23
    private Integer productPlanId;
翁国栋 committed
24
    private Integer productId;
翁国栋 committed
25
}