7f0727c152b1f384e2996210149837b09e3093ef.svn-base 7.97 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.sumdata.entity.datatable;

import org.hibernate.validator.constraints.Length;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;

import com.thinkgem.jeesite.common.persistence.DataEntity;

/**
 * s_reg_bus_fdcq2Entity
 * @author xuyg
 * @version 2017-03-08
 */
public class SRegBusFdcq2 extends DataEntity<SRegBusFdcq2> {
	
	private static final long serialVersionUID = 1L;
	private String sareaCode;		// s_area_code
	private String ysdm;		// ysdm
	private String bdcdyh;		// bdcdyh
	private String ywh;		// ywh
	private String qllx;		// qllx
	private String djlx;		// djlx
	private String djyy;		// djyy
	private String fdzl;		// fdzl
	private String tdsyqr;		// tdsyqr
	private Date tdsyqssj;		// tdsyqssj
	private Date tdsyjssj;		// tdsyjssj
	private String ghyt;		// ghyt
	private String fwxz;		// fwxz
	private String qlxz;		
	private String fwjg;		// fwjg
	private String szc;		// szc
	private Integer zcs;		// zcs
	private String jgsj;		// jgsj
	private String bdcqzh;		// bdcqzh
	private String ybdcqzh;		// ybdcqzh
	private String qxdm;		// qxdm
	private String zdftfs;		// zdftfs
	private String djjg;		// djjg
	private String dbr;		// dbr
	private Date djsj;		// djsj
	private String fj;		// fj
	private String qszt;		// qszt
	private String cqly;		// cqly
	private String ywxl;		// ywxl
	private String htbh;		// htbh
	private Double dytdmj;		// dytdmj
	private Double fttdmj;		// fttdmj
	private Double fdcjyjg;		// fdcjyjg
	private Double jzmj;		// jzmj
	private Double zyjzmj;		// zyjzmj
	private Double ftjzmj;		// ftjzmj
	private String qxid;		// qxid
	private String ytmc;     //用途名称
	private String fwxzmc;     //房屋性质名称
	public String getQxid() {
		return qxid;
	}

	public void setQxid(String qxid) {
		this.qxid = qxid;
	}

	public SRegBusFdcq2() {
		super();
	}

	public String getQlxz() {
		return qlxz;
	}

	public void setQlxz(String qlxz) {
		this.qlxz = qlxz;
	}

	public SRegBusFdcq2(String id){
		super(id);
	}

	@Length(min=1, max=6, message="s_area_code长度必须介于 1 和 6 之间")
	public String getSareaCode() {
		return sareaCode;
	}

	public void setSareaCode(String sareaCode) {
		this.sareaCode = sareaCode;
	}
	
	@Length(min=0, max=10, message="ysdm长度必须介于 0 和 10 之间")
	public String getYsdm() {
		return ysdm;
	}

	public void setYsdm(String ysdm) {
		this.ysdm = ysdm;
	}
	
	@Length(min=0, max=28, message="bdcdyh长度必须介于 0 和 28 之间")
	public String getBdcdyh() {
		return bdcdyh;
	}

	public void setBdcdyh(String bdcdyh) {
		this.bdcdyh = bdcdyh;
	}
	
	@Length(min=0, max=20, message="ywh长度必须介于 0 和 20 之间")
	public String getYwh() {
		return ywh;
	}

	public void setYwh(String ywh) {
		this.ywh = ywh;
	}
	
	@Length(min=0, max=2, message="qllx长度必须介于 0 和 2 之间")
	public String getQllx() {
		return qllx;
	}

	public void setQllx(String qllx) {
		this.qllx = qllx;
	}
	
	@Length(min=0, max=6, message="djlx长度必须介于 0 和 6 之间")
	public String getDjlx() {
		return djlx;
	}

	public void setDjlx(String djlx) {
		this.djlx = djlx;
	}
	
	@Length(min=0, max=500, message="djyy长度必须介于 0 和 500 之间")
	public String getDjyy() {
		return djyy;
	}

	public void setDjyy(String djyy) {
		this.djyy = djyy;
	}
	
	@Length(min=0, max=200, message="fdzl长度必须介于 0 和 200 之间")
	public String getFdzl() {
		return fdzl;
	}

	public void setFdzl(String fdzl) {
		this.fdzl = fdzl;
	}
	
	@Length(min=0, max=200, message="tdsyqr长度必须介于 0 和 200 之间")
	public String getTdsyqr() {
		return tdsyqr;
	}

	public void setTdsyqr(String tdsyqr) {
		this.tdsyqr = tdsyqr;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public Date getTdsyqssj() {
		return tdsyqssj;
	}

	public void setTdsyqssj(Date tdsyqssj) {
		this.tdsyqssj = tdsyqssj;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public Date getTdsyjssj() {
		return tdsyjssj;
	}

	public void setTdsyjssj(Date tdsyjssj) {
		this.tdsyjssj = tdsyjssj;
	}
	
	@Length(min=0, max=4, message="ghyt长度必须介于 0 和 4 之间")
	public String getGhyt() {
		return ghyt;
	}

	public void setGhyt(String ghyt) {
		this.ghyt = ghyt;
	}
	
	@Length(min=0, max=2, message="fwxz长度必须介于 0 和 2 之间")
	public String getFwxz() {
		return fwxz;
	}

	public void setFwxz(String fwxz) {
		this.fwxz = fwxz;
	}
	
	@Length(min=0, max=2, message="fwjg长度必须介于 0 和 2 之间")
	public String getFwjg() {
		return fwjg;
	}

	public void setFwjg(String fwjg) {
		this.fwjg = fwjg;
	}
	
	public String getSzc() {
		return szc;
	}

	public void setSzc(String szc) {
		this.szc = szc;
	}
	
	public Integer getZcs() {
		return zcs;
	}

	public void setZcs(Integer zcs) {
		this.zcs = zcs;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public String getJgsj() {
		return jgsj;
	}

	public void setJgsj(String jgsj) {
		this.jgsj = jgsj;
	}
	
	@Length(min=0, max=500, message="bdcqzh长度必须介于 0 和 500 之间")
	public String getBdcqzh() {
		return bdcqzh;
	}

	public void setBdcqzh(String bdcqzh) {
		this.bdcqzh = bdcqzh;
	}
	
	@Length(min=0, max=500, message="ybdcqzh长度必须介于 0 和 500 之间")
	public String getYbdcqzh() {
		return ybdcqzh;
	}

	public void setYbdcqzh(String ybdcqzh) {
		this.ybdcqzh = ybdcqzh;
	}
	
	@Length(min=0, max=6, message="qxdm长度必须介于 0 和 6 之间")
	public String getQxdm() {
		return qxdm;
	}

	public void setQxdm(String qxdm) {
		this.qxdm = qxdm;
	}
	
	@Length(min=0, max=4, message="zdftfs长度必须介于 0 和 4 之间")
	public String getZdftfs() {
		return zdftfs;
	}

	public void setZdftfs(String zdftfs) {
		this.zdftfs = zdftfs;
	}
	
	@Length(min=0, max=200, message="djjg长度必须介于 0 和 200 之间")
	public String getDjjg() {
		return djjg;
	}

	public void setDjjg(String djjg) {
		this.djjg = djjg;
	}
	
	@Length(min=0, max=50, message="dbr长度必须介于 0 和 50 之间")
	public String getDbr() {
		return dbr;
	}

	public void setDbr(String dbr) {
		this.dbr = dbr;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public Date getDjsj() {
		return djsj;
	}

	public void setDjsj(Date djsj) {
		this.djsj = djsj;
	}
	
	@Length(min=0, max=300, message="fj长度必须介于 0 和 300 之间")
	public String getFj() {
		return fj;
	}

	public void setFj(String fj) {
		this.fj = fj;
	}
	
	@Length(min=0, max=2, message="qszt长度必须介于 0 和 2 之间")
	public String getQszt() {
		return qszt;
	}

	public void setQszt(String qszt) {
		this.qszt = qszt;
	}
	
	@Length(min=0, max=4, message="cqly长度必须介于 0 和 4 之间")
	public String getCqly() {
		return cqly;
	}

	public void setCqly(String cqly) {
		this.cqly = cqly;
	}
	
	@Length(min=0, max=4, message="ywxl长度必须介于 0 和 4 之间")
	public String getYwxl() {
		return ywxl;
	}

	public void setYwxl(String ywxl) {
		this.ywxl = ywxl;
	}
	
	@Length(min=0, max=20, message="htbh长度必须介于 0 和 20 之间")
	public String getHtbh() {
		return htbh;
	}

	public void setHtbh(String htbh) {
		this.htbh = htbh;
	}
	
	public Double getDytdmj() {
		return dytdmj;
	}

	public void setDytdmj(Double dytdmj) {
		this.dytdmj = dytdmj;
	}
	
	public Double getFttdmj() {
		return fttdmj;
	}

	public void setFttdmj(Double fttdmj) {
		this.fttdmj = fttdmj;
	}
	
	public Double getFdcjyjg() {
		return fdcjyjg;
	}

	public void setFdcjyjg(Double fdcjyjg) {
		this.fdcjyjg = fdcjyjg;
	}
	
	public Double getJzmj() {
		return jzmj;
	}

	public void setJzmj(Double jzmj) {
		this.jzmj = jzmj;
	}
	
	public Double getZyjzmj() {
		return zyjzmj;
	}

	public void setZyjzmj(Double zyjzmj) {
		this.zyjzmj = zyjzmj;
	}
	
	public Double getFtjzmj() {
		return ftjzmj;
	}

	public void setFtjzmj(Double ftjzmj) {
		this.ftjzmj = ftjzmj;
	}

	public String getYtmc() {
		return ytmc;
	}

	public void setYtmc(String ytmc) {
		this.ytmc = ytmc;
	}

	public String getFwxzmc() {
		return fwxzmc;
	}

	public void setFwxzmc(String fwxzmc) {
		this.fwxzmc = fwxzmc;
	}
	
}