3f73593fe1775cdf655a1ff78d99e2f29a562e71.svn-base 2.21 KB
/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.reg.entity.searchinfo;

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

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

/**
 * 接口查询表Entity
 * @author f
 * @version 2018-01-16
 */
public class SRegBusCxxx extends DataEntity<SRegBusCxxx> {
	
	private static final long serialVersionUID = 1L;
	private String cxdw;		// cxdw
	private Date cxsj;		// cxsj
	private String bcxr;		// bcxr
	private String bcxrzjh;		// bcxrzjh
	private String qxdm;		// qxdm
	private String bdcqzh;		// qxdm
	private String wsbh;		// qxdm
	private String gzzbh;		// qxdm
	private String gwzbh;		// qxdm
	public SRegBusCxxx() {
		super();
	}

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

	@Length(min=0, max=200, message="cxdw长度必须介于 0 和 200 之间")
	public String getCxdw() {
		return cxdw;
	}

	public void setCxdw(String cxdw) {
		this.cxdw = cxdw;
	}
	
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
	public Date getCxsj() {
		return cxsj;
	}

	public void setCxsj(Date cxsj) {
		this.cxsj = cxsj;
	}
	
	@Length(min=0, max=200, message="bcxr长度必须介于 0 和 200 之间")
	public String getBcxr() {
		return bcxr;
	}

	public void setBcxr(String bcxr) {
		this.bcxr = bcxr;
	}
	
	@Length(min=0, max=50, message="bcxrzjh长度必须介于 0 和 50 之间")
	public String getBcxrzjh() {
		return bcxrzjh;
	}

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

	public void setQxdm(String qxdm) {
		this.qxdm = qxdm;
	}

	public String getBdcqzh() {
		return bdcqzh;
	}

	public void setBdcqzh(String bdcqzh) {
		this.bdcqzh = bdcqzh;
	}

	public String getWsbh() {
		return wsbh;
	}

	public void setWsbh(String wsbh) {
		this.wsbh = wsbh;
	}

	public String getGzzbh() {
		return gzzbh;
	}

	public void setGzzbh(String gzzbh) {
		this.gzzbh = gzzbh;
	}

	public String getGwzbh() {
		return gwzbh;
	}

	public void setGwzbh(String gwzbh) {
		this.gwzbh = gwzbh;
	}
	
}