|
|
@@ -41,24 +41,12 @@ public class GameTeamVo implements Serializable {
|
|
|
*/
|
|
|
private Long rgId;
|
|
|
|
|
|
- /**
|
|
|
- * 排名分组名
|
|
|
- */
|
|
|
- @ExcelProperty(value = "分组名")
|
|
|
- private String rgName;
|
|
|
-
|
|
|
/**
|
|
|
* 赛事名称
|
|
|
*/
|
|
|
// @ExcelProperty(value = "赛事名称")
|
|
|
private String eventName;
|
|
|
|
|
|
- /**
|
|
|
- * 队伍名称
|
|
|
- */
|
|
|
- @ExcelProperty(value = "队伍名称")
|
|
|
- private String teamName;
|
|
|
-
|
|
|
/**
|
|
|
* 队伍编号
|
|
|
*/
|
|
|
@@ -66,10 +54,10 @@ public class GameTeamVo implements Serializable {
|
|
|
private String teamCode;
|
|
|
|
|
|
/**
|
|
|
- * 领队
|
|
|
+ * 队伍名称
|
|
|
*/
|
|
|
- @ExcelProperty(value = "领队")
|
|
|
- private String leader;
|
|
|
+ @ExcelProperty(value = "队伍名称")
|
|
|
+ private String teamName;
|
|
|
|
|
|
/**
|
|
|
* 队员列表
|
|
|
@@ -87,6 +75,24 @@ public class GameTeamVo implements Serializable {
|
|
|
@ExcelProperty(value = "参与项目")
|
|
|
private String projectNames;
|
|
|
|
|
|
+ /**
|
|
|
+ * 排名分组名
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "分组名")
|
|
|
+ private String rgName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 团队描述
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "团队描述")
|
|
|
+ private String teamDescribe;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 领队
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "领队")
|
|
|
+ private String leader;
|
|
|
+
|
|
|
/**
|
|
|
* 人数
|
|
|
*/
|
|
|
@@ -99,23 +105,17 @@ public class GameTeamVo implements Serializable {
|
|
|
@ExcelProperty(value = "号码段")
|
|
|
private String numberRange;
|
|
|
|
|
|
- /**
|
|
|
- * 团队描述
|
|
|
- */
|
|
|
- @ExcelProperty(value = "团队描述")
|
|
|
- private String teamDescribe;
|
|
|
-
|
|
|
/**
|
|
|
* 状态(0正常 1停用)
|
|
|
*/
|
|
|
- @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
|
|
|
+// @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
|
|
|
@ExcelDictFormat(readConverterExp = "0=正常,1=停用")
|
|
|
private String status;
|
|
|
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
- @ExcelProperty(value = "备注")
|
|
|
+// @ExcelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
}
|