diff --git a/src/main/java/com/budwk/app/zhgh/activity/sports/template/ActivitySportsApplyImportTemp.java b/src/main/java/com/budwk/app/zhgh/activity/sports/template/ActivitySportsApplyImportTemp.java new file mode 100644 index 00000000..0915cce7 --- /dev/null +++ b/src/main/java/com/budwk/app/zhgh/activity/sports/template/ActivitySportsApplyImportTemp.java @@ -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; +}