package com.cku.oa.groomer.entity;

import com.thinkgem.jeesite.common.persistence.DataEntity;
import com.thinkgem.jeesite.common.utils.excel.annotation.ExcelField;

public class GroomerExcelEntity extends DataEntity<GroomerExcelEntity> {
	private static final long serialVersionUID = 1L;
	
	@ExcelField(title="证书类型", align=1, sort=1)
	private String type;
	
	@ExcelField(title="会员号", align=1, sort=2)
	private String memberCode;		
	
	@ExcelField(title="会员姓名", align=1, sort=3)
	private String memberName;		
	
	@ExcelField(title="缴费状态", align=1, sort=4)
	private String paymentStatus;	
	
	@ExcelField(title="支付方式", align=1, sort=5)
	private String paymentType;	
	
	@ExcelField(title="订单金额", align=1, sort=6)
	private String paymentPrice;	
	
	@ExcelField(title="缴费时间", align=1, sort=7)
	private String paymentDate;	
	
	@ExcelField(title="审核状态", align=1, sort=8)
	private String examineStatus;	
	
	@ExcelField(title="审核人", align=1, sort=9)
	private String examineBy;	
	
	@ExcelField(title="审核时间", align=1, sort=10)
	private String examineDate;	
	
	@ExcelField(title="签发日期", align=1, sort=11)
	private String sendDate;
	
	@ExcelField(title="申请时间", align=1, sort=12)
	private String applyDate;

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getMemberCode() {
		return memberCode;
	}

	public void setMemberCode(String memberCode) {
		this.memberCode = memberCode;
	}

	public String getMemberName() {
		return memberName;
	}

	public void setMemberName(String memberName) {
		this.memberName = memberName;
	}

	public String getPaymentStatus() {
		return paymentStatus;
	}

	public void setPaymentStatus(String paymentStatus) {
		this.paymentStatus = paymentStatus;
	}

	public String getPaymentType() {
		return paymentType;
	}

	public void setPaymentType(String paymentType) {
		this.paymentType = paymentType;
	}

	public String getPaymentPrice() {
		return paymentPrice;
	}

	public void setPaymentPrice(String paymentPrice) {
		this.paymentPrice = paymentPrice;
	}

	public String getPaymentDate() {
		return paymentDate;
	}

	public void setPaymentDate(String paymentDate) {
		this.paymentDate = paymentDate;
	}

	public String getExamineStatus() {
		return examineStatus;
	}

	public void setExamineStatus(String examineStatus) {
		this.examineStatus = examineStatus;
	}

	public String getExamineBy() {
		return examineBy;
	}

	public void setExamineBy(String examineBy) {
		this.examineBy = examineBy;
	}

	public String getSendDate() {
		return sendDate;
	}

	public void setSendDate(String sendDate) {
		this.sendDate = sendDate;
	}

	public String getApplyDate() {
		return applyDate;
	}

	public void setApplyDate(String applyDate) {
		this.applyDate = applyDate;
	}

	public String getExamineDate() {
		return examineDate;
	}

	public void setExamineDate(String examineDate) {
		this.examineDate = examineDate;
	}

	@Override
	public String toString() {
		return "GroomerExcelEntity [type=" + type + ", memberCode=" + memberCode + ", memberName=" + memberName
				+ ", paymentStatus=" + paymentStatus + ", paymentType=" + paymentType + ", paymentPrice=" + paymentPrice
				+ ", paymentDate=" + paymentDate + ", examineStatus=" + examineStatus + ", examineBy=" + examineBy
				+ ", examineDate=" + examineDate + ", sendDate=" + sendDate + ", applyDate=" + applyDate + "]";
	} 
	
	
	
	
	
}
