4ba11869bed03afe427e9fff3ed7fd1b1af77659.svn-base 4.96 KB
/**
 * 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_sjhjtableEntity
 * @author xuyg
 * @version 2017-03-08
 */
public class SRegBusSjhjtable extends DataEntity<SRegBusSjhjtable> {
	
	private static final long serialVersionUID = 1L;
	private String bizmsgid;		// bizmsgid
	private String sareaCode;		// s_area_code
	private String asid;		// asid
	private String areacode;		// areacode
	private String rectype;		// rectype
	private String righttype;		// righttype
	private String regtype;		// regtype
	private Date createdate;		// createdate
	private String recflowid;		// recflowid
	private String regorgid;		// regorgid
	private String parcelid;		// parcelid
	private String estatenum;		// estatenum
	private String preestatenum;		// preestatenum
	private String precertid;		// precertid
	private String certcount;		// certcount
	private String proofcount;		// proofcount
	private String digitalsign;		// digitalsign
	private String qxid;		// qxid
	public String getQxid() {
		return qxid;
	}

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

	public SRegBusSjhjtable() {
		super();
	}

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

	@Length(min=1, max=22, message="bizmsgid长度必须介于 1 和 22 之间")
	public String getBizmsgid() {
		return bizmsgid;
	}

	public void setBizmsgid(String bizmsgid) {
		this.bizmsgid = bizmsgid;
	}
	
	@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=6, message="asid长度必须介于 0 和 6 之间")
	public String getAsid() {
		return asid;
	}

	public void setAsid(String asid) {
		this.asid = asid;
	}
	
	@Length(min=0, max=12, message="areacode长度必须介于 0 和 12 之间")
	public String getAreacode() {
		return areacode;
	}

	public void setAreacode(String areacode) {
		this.areacode = areacode;
	}
	
	@Length(min=0, max=10, message="rectype长度必须介于 0 和 10 之间")
	public String getRectype() {
		return rectype;
	}

	public void setRectype(String rectype) {
		this.rectype = rectype;
	}
	
	@Length(min=0, max=2, message="righttype长度必须介于 0 和 2 之间")
	public String getRighttype() {
		return righttype;
	}

	public void setRighttype(String righttype) {
		this.righttype = righttype;
	}
	
	@Length(min=0, max=8, message="regtype长度必须介于 0 和 8 之间")
	public String getRegtype() {
		return regtype;
	}

	public void setRegtype(String regtype) {
		this.regtype = regtype;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public Date getCreatedate() {
		return createdate;
	}

	public void setCreatedate(Date createdate) {
		this.createdate = createdate;
	}
	
	@Length(min=0, max=50, message="recflowid长度必须介于 0 和 50 之间")
	public String getRecflowid() {
		return recflowid;
	}

	public void setRecflowid(String recflowid) {
		this.recflowid = recflowid;
	}
	
	@Length(min=0, max=200, message="regorgid长度必须介于 0 和 200 之间")
	public String getRegorgid() {
		return regorgid;
	}

	public void setRegorgid(String regorgid) {
		this.regorgid = regorgid;
	}
	
	@Length(min=0, max=50, message="parcelid长度必须介于 0 和 50 之间")
	public String getParcelid() {
		return parcelid;
	}

	public void setParcelid(String parcelid) {
		this.parcelid = parcelid;
	}
	
	@Length(min=0, max=28, message="estatenum长度必须介于 0 和 28 之间")
	public String getEstatenum() {
		return estatenum;
	}

	public void setEstatenum(String estatenum) {
		this.estatenum = estatenum;
	}
	
	@Length(min=0, max=255, message="preestatenum长度必须介于 0 和 255 之间")
	public String getPreestatenum() {
		return preestatenum;
	}

	public void setPreestatenum(String preestatenum) {
		this.preestatenum = preestatenum;
	}
	
	@Length(min=0, max=255, message="precertid长度必须介于 0 和 255 之间")
	public String getPrecertid() {
		return precertid;
	}

	public void setPrecertid(String precertid) {
		this.precertid = precertid;
	}
	
	@Length(min=0, max=3, message="certcount长度必须介于 0 和 3 之间")
	public String getCertcount() {
		return certcount;
	}

	public void setCertcount(String certcount) {
		this.certcount = certcount;
	}
	
	@Length(min=0, max=3, message="proofcount长度必须介于 0 和 3 之间")
	public String getProofcount() {
		return proofcount;
	}

	public void setProofcount(String proofcount) {
		this.proofcount = proofcount;
	}
	
	@Length(min=0, max=256, message="digitalsign长度必须介于 0 和 256 之间")
	public String getDigitalsign() {
		return digitalsign;
	}

	public void setDigitalsign(String digitalsign) {
		this.digitalsign = digitalsign;
	}
	
}