InsureUserDto.java 362 Bytes
Newer Older
翁国栋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package cn.timer.api.dto.insure;

import lombok.Data;

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/4/7 17:13
 */
@Data
public class InsureUserDto {
    private Integer policyId;
    private String benefitBasicPlan;
    private String benefitOccupationCategory;
    private Integer totalUser;
    private String[] oldIds;
翁国栋 committed
17
    private String policyNo;
翁国栋 committed
18
}