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/entity/thrsys/ThrInvWarehouseEntity.java

23 lines
352 B
Java

package com.glxp.api.entity.thrsys;
import lombok.Data;
import java.util.Date;
@Data
public class ThrInvWarehouseEntity {
private String id;
private String code;
private String name;
private String parentId;
private String remark;
private String thirdSysFk;
2 years ago
private String parentName;
private Date updateTime;
}