forked from wangjiadong/comp
parent
43a483ed64
commit
7484625f08
5 changed files with 139 additions and 16 deletions
@ -0,0 +1,80 @@ |
||||
package org.jeecg.modules.demo.teamseq.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import org.jeecgframework.poi.excel.annotation.Excel; |
||||
|
||||
/** |
||||
* @Description: TODO |
||||
* @Author: Z.H.C |
||||
* @CreateTime: 2024-08-23 09:24 |
||||
* @Version: 1.0 |
||||
*/ |
||||
@Data |
||||
public class TeamSeqVo { |
||||
|
||||
/** |
||||
* 年度比赛项目id |
||||
*/ |
||||
@Excel(name = "年度比赛项目id", width = 15) |
||||
@ApiModelProperty(value = "年度比赛项目id") |
||||
private String pointId; |
||||
|
||||
|
||||
/** |
||||
* 第1序号 |
||||
*/ |
||||
@Excel(name = "第1序号", width = 15) |
||||
@ApiModelProperty(value = "第1序号") |
||||
private Integer teamSeqFirst; |
||||
/** |
||||
* 第1序号比值 |
||||
*/ |
||||
@Excel(name = "第1序号比值", width = 15) |
||||
@ApiModelProperty(value = "第1序号比值") |
||||
private Integer teamSeqFirstVal; |
||||
|
||||
/** |
||||
* 第2序号 |
||||
*/ |
||||
@ApiModelProperty(value = "第1序号") |
||||
private Integer teamSeqSecond; |
||||
/** |
||||
* 第2序号比值 |
||||
*/ |
||||
@ApiModelProperty(value = "第2序号比值") |
||||
private Integer teamSeqSecondVal; |
||||
|
||||
/** |
||||
* 第3序号 |
||||
*/ |
||||
@ApiModelProperty(value = "第3序号") |
||||
private Integer teamSeqThird; |
||||
/** |
||||
* 第3序号比值 |
||||
*/ |
||||
@ApiModelProperty(value = "第3序号比值") |
||||
private Integer teamSeqThirdVal; |
||||
|
||||
/** |
||||
* 第4序号 |
||||
*/ |
||||
@ApiModelProperty(value = "第4序号") |
||||
private Integer teamSeqFourth; |
||||
/** |
||||
* 第4序号比值 |
||||
*/ |
||||
@ApiModelProperty(value = "第4序号比值") |
||||
private Integer teamSeqFourthVal; |
||||
|
||||
/** |
||||
* 第5序号 |
||||
*/ |
||||
@ApiModelProperty(value = "第5序号") |
||||
private Integer teamSeqFifth; |
||||
/** |
||||
* 第5序号比值 |
||||
*/ |
||||
@ApiModelProperty(value = "第5序号比值") |
||||
private Integer teamSeqFifthVal; |
||||
} |
Loading…
Reference in new issue