19 changed files with 185 additions and 25 deletions
@ -0,0 +1,26 @@ |
|||
package com.elink.esua.epdc.dto.epdc.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2019/9/11 17:10 |
|||
* @Description: banner列表 |
|||
*/ |
|||
@Data |
|||
public class EpdcBannerListFromDTO implements Serializable { |
|||
private static final long serialVersionUID = -178835849989066589L; |
|||
|
|||
@NotBlank(message = "新闻位置不能为空") |
|||
private String position; |
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
@NotNull(message = "网格ID不能为空") |
|||
private Long deptId; |
|||
|
|||
} |
|||
@ -0,0 +1,28 @@ |
|||
package com.elink.esua.epdc.dto.epdc.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author: qushutong 首页第一条消息数据 |
|||
* @Date: 2019/9/11 18:59 |
|||
* @Description: |
|||
*/ |
|||
@Data |
|||
public class EpdcIFristInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8249847977818930805L; |
|||
/** |
|||
* id : 55864 |
|||
* title : FSqWVB8jbB |
|||
* time : 1568199504633 |
|||
* amount : 90109 |
|||
*/ |
|||
|
|||
private String id; |
|||
private String title; |
|||
private String time; |
|||
private int amount; |
|||
|
|||
} |
|||
Loading…
Reference in new issue