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.
37 lines
672 B
Java
37 lines
672 B
Java
package com.glxp.api.res.auth;
|
|
|
|
import com.glxp.api.entity.auth.PdaMainItemEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class LoginResponse {
|
|
|
|
private String id;
|
|
private String token;
|
|
|
|
|
|
private String dept;
|
|
private String deptName;
|
|
|
|
private String invCode;
|
|
private String invName;
|
|
|
|
private String employeeName;
|
|
private String userName;
|
|
/**
|
|
* inout/IoCreateScanOrder
|
|
* inout/IoDealOrder
|
|
* inout/IoDealCheckOrder
|
|
* inout/IoCheckSuccessOrder
|
|
* inout/IoCheckAuditOrder
|
|
* 新增扫码单据
|
|
*/
|
|
private List<PdaMainItemEntity> menus;
|
|
|
|
private boolean needChangePwd = false;
|
|
|
|
|
|
}
|