cuijian
2025-06-28 b231e345300e34c9c918cbd7e2db44d334eb4937
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.jeecg.modules.system.vo;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @Description: 产线人员vo
 * @author: jeecg-boot
 */
@Data
public class SysUserFactoryVO implements Serializable{
    private static final long serialVersionUID = 1L;
 
    /**产线id*/
    private String factoryId;
    /**对应的用户id集合*/
    private List<String> userIdList;
 
    public SysUserFactoryVO() {
        super();
    }
 
    public SysUserFactoryVO(String factoryId, List<String> userIdList) {
        super();
        this.factoryId = factoryId;
        this.userIdList = userIdList;
    }
 
}