zhongrj
2024-11-19 0aa2c9095e7d1bcfa5a5e6666fc57d24d5533c73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.springblade.modules.yw.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springblade.modules.yw.entity.FirmInfo;
 
@Data
public class FirmInfoVO extends FirmInfo {
 
    @ApiModelProperty(value = "行业名称")
    private String categoryName;
 
    @ApiModelProperty(value = "救援队伍人员姓名")
    private String rescuePerName;
 
    @ApiModelProperty(value = "救援队伍人员电话")
    private String rescuePerPhone;
 
    @ApiModelProperty(value = "救援队伍人员姓名2")
    private String rescuePerNameTwo;
 
    @ApiModelProperty(value = "救援队伍人员电话2")
    private String rescuePerPhoneTwo;
}