无关风月
1 天以前 083c414ff683ab12e65069c6c0ba6871ed1ed09f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.vo.system;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "作业类型分类VO")
public class LocationTypeListByProjectVO {
 
    @ApiModelProperty("类型名称")
    @Excel(name = "locationTypeName", width = 20)
    private String locationTypeName;
    @ApiModelProperty("数量")
    @Excel(name = "locationNum", width = 20)
    private Integer locationNum;
    @ApiModelProperty("类型id")
    private String id;
}