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.
26 lines
474 B
Java
26 lines
474 B
Java
3 years ago
|
package com.glxp.api.res.auth;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 分仓接口响应类
|
||
|
*/
|
||
|
@Data
|
||
|
public class InvSubWarehouseResponse {
|
||
|
|
||
|
private String id;
|
||
|
//分仓编码
|
||
|
private String code;
|
||
|
//分仓编码
|
||
|
private String name;
|
||
|
//主仓库编码
|
||
|
private String parentId;
|
||
|
//主仓库名称
|
||
|
private String parentName;
|
||
|
private String remark;
|
||
|
private boolean defaultInv;
|
||
|
private String parentCode;
|
||
|
private String parentInvName;
|
||
|
|
||
|
}
|