xuhy
3 天以前 653cb0ed3e7be231059480cee266b11f1c9ba11e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.system.vo.system;
 
import com.ruoyi.system.model.TLeave;
import com.ruoyi.system.model.TLocationType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "点位类型列表分页VO")
public class LocationTypeListVO extends TLocationType {
 
    @ApiModelProperty("关联点位数")
    private String locationCount;
 
}