xuhy
2025-06-20 12aac2ade617f3bb4e40165176d009ab3fa15a52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.vo.system;
 
import com.ruoyi.system.model.TCleaner;
import com.ruoyi.system.model.TDept;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "保洁员列表VO")
public class CleanerListVO extends TCleaner {
 
    @ApiModelProperty("所属项目部/片区")
    private String projectName;
}