Commit 18be816a by chongli

会服--绑定管理员--导出excel

parent ed5f110d
......@@ -2,6 +2,11 @@ package com.ctrip.fun.common.vo.user;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.ctrip.fun.mall.vo.ExcelTitleName;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
* 公社会员绑定会服表
......@@ -57,24 +62,30 @@ public class CommuneAdmBean implements java.io.Serializable {
public void setId(Integer id) {
this.id = id;
}
@ExcelTitleName(value = "uid", number = 12)
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
@ExcelTitleName(value = "电话", number = 11)
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
@ExcelTitleName(value = "姓名", number = 10)
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
@ExcelTitleName(value = "生日", number = 16)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
public Date getBirthday() {
return birthday;
}
......@@ -87,18 +98,25 @@ public class CommuneAdmBean implements java.io.Serializable {
public void setVipGrade(Integer vipGrade) {
this.vipGrade = vipGrade;
}
@ExcelTitleName(value = "社员到期时间", number = 17)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
public Date getCommuneAgainTime() {
return communeAgainTime;
}
public void setCommuneAgainTime(Date communeAgainTime) {
this.communeAgainTime = communeAgainTime;
}
@ExcelTitleName(value = "绑定会服", number = 18)
public String getBindedAdm() {
return bindedAdm;
}
public void setBindedAdm(String bindedAdm) {
this.bindedAdm = bindedAdm;
}
@ExcelTitleName(value = "绑定时间", number = 19)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
public Date getBindTime() {
return bindTime;
}
......@@ -111,6 +129,7 @@ public class CommuneAdmBean implements java.io.Serializable {
public void setCommuneExtId(Integer communeExtId) {
this.communeExtId = communeExtId;
}
@ExcelTitleName(value = "开单人", number = 13)
public String getDrawer() {
return drawer;
}
......@@ -129,6 +148,7 @@ public class CommuneAdmBean implements java.io.Serializable {
public void setCheckedRegion(Integer checkedRegion) {
this.checkedRegion = checkedRegion;
}
@ExcelTitleName(value = "开卡区域", number = 14)
public String getCheckedRegionMsg() {
return checkedRegionMsg;
}
......@@ -141,6 +161,7 @@ public class CommuneAdmBean implements java.io.Serializable {
public void setCustomerRegion(Integer customerRegion) {
this.customerRegion = customerRegion;
}
@ExcelTitleName(value = "客户区域", number = 15)
public String getCustomerRegionMsg() {
return customerRegionMsg;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment