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

import org.hibernate.validator.constraints.Length;

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

/**
 * 微信预约Entity
 * @author lzj
 * @version 2020-03-06
 */
public class WxOrder extends DataEntity<WxOrder> {
	
	private static final long serialVersionUID = 1L;
	private String userid;     //用户id,与微信系统一致
	private String yyid;		// 预约id
	private String yydate;		// 预约日期
	private String ywdl;		// 预约大类
	private String ywxl;		// 预约小类
	private String yysjd;		// 预约时间段
	private String yyrmc;		// 预约人名称
	private String yyrcode;      //预约人身份证号
	private String sign;        //签到标志
	private String blck;       //办理窗口
	private String yydh;		// 预约单号
	
	
	public WxOrder() {
		super();
	}
 
	
	public String getUserid() {
		return userid;
	}


	public void setUserid(String userid) {
		this.userid = userid;
	}


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

	@Length(min=0, max=64, message="预约id长度必须介于 0 和 64 之间")
	public String getYyid() {
		return yyid;
	}

	public void setYyid(String yyid) {
		this.yyid = yyid;
	}
	
	@Length(min=0, max=12, message="预约日期长度必须介于 0 和 12 之间")
	public String getYydate() {
		return yydate;
	}

	public void setYydate(String yydate) {
		this.yydate = yydate;
	}
	
	
	
	public String getYwdl() {
		return ywdl;
	}

	public void setYwdl(String ywdl) {
		this.ywdl = ywdl;
	}

	public String getYwxl() {
		return ywxl;
	}

	public void setYwxl(String ywxl) {
		this.ywxl = ywxl;
	}

	@Length(min=0, max=12, message="预约时间段长度必须介于 0 和 12 之间")
	public String getYysjd() {
		return yysjd;
	}

	public void setYysjd(String yysjd) {
		this.yysjd = yysjd;
	}
	
	@Length(min=0, max=76, message="预约人名称长度必须介于 0 和 76 之间")
	public String getYyrmc() {
		return yyrmc;
	}

	public void setYyrmc(String yyrmc) {
		this.yyrmc = yyrmc;
	}

	public String getYyrcode() {
		return yyrcode;
	}

	public void setYyrcode(String yyrcode) {
		this.yyrcode = yyrcode;
	}

	public String getSign() {
		return sign;
	}

	public void setSign(String sign) {
		this.sign = sign;
	}

	public String getBlck() {
		return blck;
	}

	public void setBlck(String blck) {
		this.blck = blck;
	}


	public String getYydh() {
		return yydh;
	}


	public void setYydh(String yydh) {
		this.yydh = yydh;
	}
	
}