21 lines
302 B
Plaintext
21 lines
302 B
Plaintext
package com.cmeim.stock.vo;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class WareHouseTree {
|
|
private Long id;
|
|
private Long pid;
|
|
private String label;
|
|
private String value;
|
|
|
|
private String Unit;
|
|
private String Spec;
|
|
|
|
private List<WareHouseTree> children;
|
|
|
|
}
|