commit
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
package com.budwk.app.zhgh.activity.sports.template;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 体育活动报名导入模板
|
||||
*/
|
||||
@Data
|
||||
public class ActivitySportsApplyImportTemp {
|
||||
|
||||
@Excel(name = "工会", width = 20)
|
||||
private String unionName;
|
||||
|
||||
@Excel(name = "工号", width = 20)
|
||||
private String loginName;
|
||||
|
||||
@Excel(name = "姓名", width = 20)
|
||||
private String userName;
|
||||
|
||||
@Excel(name = "性别", width = 12)
|
||||
private String sex;
|
||||
|
||||
@Excel(name = "项目编号", width = 20)
|
||||
private String projectCode;
|
||||
|
||||
@Excel(name = "身份", width = 20)
|
||||
private String identity;
|
||||
|
||||
@Excel(name = "备注", width = 30)
|
||||
private String notes;
|
||||
}
|
||||
Reference in New Issue
Block a user