Bug修复【ID1000418】会员管理-批量导出左右顺序需要按照标题的顺序来展示

master
382696293@qq.com 2 years ago
parent 9ad7d10645
commit 89fb503fb8

@ -7,87 +7,87 @@ import java.util.List;
public class WxUserMemberExport { public class WxUserMemberExport {
/**
* id
*/
@Excel(name = "用户编号")
private Long id;
/** /**
* *
*/ */
@Excel(name = "会员昵称") @Excel(name = "会员昵称", sort = 1)
private String nickname; private String nickname;
/** /**
* * id
*/ */
@Excel(name = "积分") @Excel(name = "用户编号", sort = 2)
private Integer credit; private Long id;
/** /**
* *
*/ */
@Excel(name = "即将过期积分") @Excel(name = "手机号码", sort = 3)
private Integer expireCredit; private String mobile;
/** /**
* unionid *
*/ */
@Excel(name = "unionid") @Excel(name = "生日", width = 30, dateFormat = "yyyy-MM-dd", sort = 4)
private String unionid; private Date birthday;
/**
*
*/
@Excel(name = "手机号")
private String mobile;
/** /**
* *
*/ */
@Excel(name = "省") @Excel(name = "省", sort = 5)
private String province; private String province;
/** /**
* *
*/ */
@Excel(name = "市") @Excel(name = "市", sort = 6)
private String city; private String city;
/** /**
* *
*/ */
@Excel(name = "区") @Excel(name = "区", sort = 7)
private String area; private String area;
/** /**
* *
*/ */
@Excel(name = "生日", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "用户注册时间", dateFormat = "yyyy-MM-dd HH:mm:ss", sort = 8)
private Date birthday; private Date createTime;
/** /**
* *
*/ */
@Excel(name = "仪器数量") @Excel(name = "仪器数量", sort = 9)
private Integer devicesNum; private Integer devicesNum;
@Excel(name = "仪器名称") @Excel(name = "小程序标签", sort = 10)
private String devicesName; String miniProgramTags;
@Excel(name = "外部标签", sort = 11)
String wecomTags;
/** /**
* *
*/ */
@Excel(name = "用户注册时间", dateFormat = "yyyy-MM-dd HH:mm:ss") @Excel(name = "积分", sort = 12)
private Date createTime; private Integer credit;
@Excel(name = "外部标签") /**
String wecomTags; *
*/
@Excel(name = "即将过期积分", sort = 13)
private Integer expireCredit;
@Excel(name = "小程序标签") /**
String miniProgramTags; * unionid
*/
@Excel(name = "unionid", sort = 14)
private String unionid;
@Excel(name = "仪器名称", sort = 15)
private String devicesName;
public WxUserMemberExport() { public WxUserMemberExport() {

Loading…
Cancel
Save