This commit is contained in:
=
2026-04-30 16:39:41 +08:00
parent d7c07aba71
commit 5e666bdebf
@@ -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;
}