jiangping
2025-05-28 ffa268a0585b4a1f7dac573c2c443bae97ac9a47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.dao.business.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class CaseTypeDTO {
 
    @ApiModelProperty(value = "业务主键")
    private Integer id;
 
    @ApiModelProperty(value = "案件类型:1=医疗;2=伤残;3=死亡")
    private Integer caseType;
 
 
}