16 changed files with 294 additions and 68 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.dto.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 判断难点赌点是否有数据的返回DTO |
||||
|
* @ClassName DifficultyIfExistedResultDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2020-09-28 10:45 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DifficultyIfExistedResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -2278401165059196896L; |
||||
|
|
||||
|
/** |
||||
|
* 是否有数据 true false |
||||
|
*/ |
||||
|
private boolean ifExisted = false; |
||||
|
|
||||
|
/** |
||||
|
* 已经结案的项目Id集合 |
||||
|
*/ |
||||
|
private List<String> closedIds; |
||||
|
} |
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.entity.evaluationindex.screen; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @Description 难点赌点 图片列表 |
||||
|
* @ClassName ScreenDifficultyImgDataEntity |
||||
|
* @Auth wangc |
||||
|
* @Date 2020-09-28 10:57 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_difficulty_img_data") |
||||
|
public class ScreenDifficultyImgDataEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
private String eventId; |
||||
|
|
||||
|
private String eventImgUrl; |
||||
|
|
||||
|
private Integer sort; |
||||
|
} |
Loading…
Reference in new issue