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.
udi-wms-java/src/main/java/com/glxp/api/res/auth/InvSubWarehouseResponse.java

26 lines
506 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;
private Integer advanceType;
3 years ago
}