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;
|
}
|
|
}
|