You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
274 B
16 lines
274 B
package com.jiagutech.ams.model;
|
|
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
|
|
@Data
|
|
@Accessors(chain = true)
|
|
public class RegionE {
|
|
|
|
private Long regionCode;
|
|
|
|
private String regionName;
|
|
|
|
private String regionFullCode;
|
|
private String regionFullName;
|
|
}
|
|
|