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.
22 lines
351 B
Java
22 lines
351 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;
|
|
private String parentName;
|
|
|
|
private Date updateTime;
|
|
|
|
}
|