RegGis.java
969 Bytes
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
/**
 * Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.gis.entity;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
 * gisEntity
 * @author lzj
 * @version 2021-03-17
 */
public class RegGis extends DataEntity<RegGis> {
	
	private static final long serialVersionUID = 1L;
	private String zdtzm;		// zdtzm
	private String bdcdyh;		// bdcdyh
	
	public RegGis() {
		super();
	}
	public RegGis(String id){
		super(id);
	}
	@Length(min=0, max=2, message="zdtzm长度必须介于 0 和 2 之间")
	public String getZdtzm() {
		return zdtzm;
	}
	public void setZdtzm(String zdtzm) {
		this.zdtzm = zdtzm;
	}
	
	@Length(min=0, max=28, message="bdcdyh长度必须介于 0 和 28 之间")
	public String getBdcdyh() {
		return bdcdyh;
	}
	public void setBdcdyh(String bdcdyh) {
		this.bdcdyh = bdcdyh;
	}
	
}