12 lines
161 B
Java
12 lines
161 B
Java
|
|
package com.whdc.model.entity;
|
||
|
|
|
||
|
|
public class UnitDict {
|
||
|
|
private Integer id;
|
||
|
|
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
private Integer sort;
|
||
|
|
|
||
|
|
private String type;
|
||
|
|
|
||
|
|
}
|