1886fb3c3ec1b86936c584e33b0a495d1c0b99cb.svn-base 6.01 KB
/**
 * Copyright © 2015-2018 ODM All rights reserved.
 */
package com.thinkgem.jeesite.modules.reg.entity.bus;

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

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

/**
 * 构筑物所有权信息维护Entity
 * @author xuyg
 * @version 2015-10-15
 */
public class RegBusGjzwsyq extends DataEntity<RegBusGjzwsyq> {
	
	private static final long serialVersionUID = 1L;
	private String ysdm;		// 要素代码
	private String bdcdyh;		// 不动产单元号
	private String ywh;		// 业务号
	private String qllx;		// 权利类型
	private String djlx;		// 登记类型
	private String djyy;		// 登记原因
	private String zl;		// 坐落
	private String tdhysyqr;		// 土地/海域使用权人
	private Double tdhysymj;		// 土地/海域使用面积
	private Date tdhysyqssj;		// 土地/海域使用起始时间
	private Date tdhysyjssj;		// 土地/海域使用结束时间
	private String gjzwlx;		// 构(建)筑物类型
	private String gjzwghyt;		// 构(建)筑物规划用途
	private Double gjzwmj;		// 构(建)筑物面积
	private String jgsj;		// 竣工时间
	private String bdcqzh;		// 不动产权证号
	private String qxdm;		// 区县代码
	private String djjg;		// 登记机构
	private String dbr;		// 登簿人
	private Date djsj;		// 登记时间
	private String fj;		// 附记
	private String gjzwpmt;		// 构(建)筑物平面图
	private String qszt;		// 权属状态
	
	public RegBusGjzwsyq() {
		super();
	}

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

	@Length(min=0, max=10, message="要素代码长度必须介于 0 和 10 之间")
	public String getYsdm() {
		return ysdm;
	}

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

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

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

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

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

	public void setDjyy(String djyy) {
		this.djyy = djyy;
	}
	
	@Length(min=1, max=200, message="坐落长度必须介于 1 和 200 之间")
	public String getZl() {
		return zl;
	}

	public void setZl(String zl) {
		this.zl = zl;
	}
	
	@Length(min=1, max=100, message="土地/海域使用权人长度必须介于 1 和 100 之间")
	public String getTdhysyqr() {
		return tdhysyqr;
	}

	public void setTdhysyqr(String tdhysyqr) {
		this.tdhysyqr = tdhysyqr;
	}
	
	public Double getTdhysymj() {
		return tdhysymj;
	}

	public void setTdhysymj(Double tdhysymj) {
		this.tdhysymj = tdhysymj;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	@NotNull(message="土地/海域使用起始时间不能为空")
	public Date getTdhysyqssj() {
		return tdhysyqssj;
	}

	public void setTdhysyqssj(Date tdhysyqssj) {
		this.tdhysyqssj = tdhysyqssj;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	@NotNull(message="土地/海域使用结束时间不能为空")
	public Date getTdhysyjssj() {
		return tdhysyjssj;
	}

	public void setTdhysyjssj(Date tdhysyjssj) {
		this.tdhysyjssj = tdhysyjssj;
	}
	
	@Length(min=0, max=2, message="构(建)筑物类型长度必须介于 0 和 2 之间")
	public String getGjzwlx() {
		return gjzwlx;
	}

	public void setGjzwlx(String gjzwlx) {
		this.gjzwlx = gjzwlx;
	}
	
	@Length(min=1, max=200, message="构(建)筑物规划用途长度必须介于 1 和 200 之间")
	public String getGjzwghyt() {
		return gjzwghyt;
	}

	public void setGjzwghyt(String gjzwghyt) {
		this.gjzwghyt = gjzwghyt;
	}
	
	public Double getGjzwmj() {
		return gjzwmj;
	}

	public void setGjzwmj(Double gjzwmj) {
		this.gjzwmj = gjzwmj;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	@NotNull(message="竣工时间不能为空")
	public String getJgsj() {
		return jgsj;
	}

	public void setJgsj(String jgsj) {
		this.jgsj = jgsj;
	}
	
	@Length(min=1, max=50, message="不动产权证号长度必须介于 1 和 50 之间")
	public String getBdcqzh() {
		return bdcqzh;
	}

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

	public void setQxdm(String qxdm) {
		this.qxdm = qxdm;
	}
	
	@Length(min=1, max=200, message="登记机构长度必须介于 1 和 200 之间")
	public String getDjjg() {
		return djjg;
	}

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

	public void setDbr(String dbr) {
		this.dbr = dbr;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	@NotNull(message="登记时间不能为空")
	public Date getDjsj() {
		return djsj;
	}

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

	public void setFj(String fj) {
		this.fj = fj;
	}
	
	@Length(min=0, max=100, message="构(建)筑物平面图长度必须介于 0 和 100 之间")
	public String getGjzwpmt() {
		return gjzwpmt;
	}

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

	public void setQszt(String qszt) {
		this.qszt = qszt;
	}
	
}