AdministrativeAreaParam.java
1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.lhcredit.project.webbusiness.domain;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
/**
* 省市地区表 bs_administrative_area
*
* @author lhcredit
* @date 2019-10-16
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "省市地区")
public class AdministrativeAreaParam{
private static final long serialVersionUID=1L;
/** 主键编号 */
@ApiModelProperty(value = "主键编号")
private String id;
/** 编码 */
@ApiModelProperty(value = "编码")
private String code;
/** 父级编码 */
@ApiModelProperty(value = "父级编码")
private String parentCode;
/** 全称 */
@ApiModelProperty(value = "全称")
private String fullName;
/** 末级名称 */
@ApiModelProperty(value = "末级名称")
private String lastName;
/** 层级:1省级;2市级;3县级; */
@ApiModelProperty(value = "层级:1省级;2市级;3县级;")
private String type;
/** 发布状态 */
@ApiModelProperty(value = "发布状态")
private String status;
/** 删除标志(0代表存在 2代表删除) */
@ApiModelProperty(value = "删除标志(0代表存在 2代表删除)")
private String delFlag;
/** 首字母 */
@ApiModelProperty(value = "首字母")
private String firstLetter;
/** 首字母 */
@ApiModelProperty(value = "用户Id")
private String userId;
}