You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
454 B
Java
35 lines
454 B
Java
package com.glxp.api.res.auth;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class WarehouseUserResponse {
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
private Integer id;
|
|
|
|
/**
|
|
* 仓位码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private Long userid;
|
|
|
|
/**
|
|
* 用户名/登录账号
|
|
*/
|
|
private String username;
|
|
|
|
/**
|
|
* 是否是仓库主管
|
|
*/
|
|
private boolean isDirector;
|
|
|
|
private String employeeName;
|
|
}
|