forked from rongchao/epmet-cloud-rizhao
4 changed files with 56 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/9/21 15:13 |
|||
*/ |
|||
@Data |
|||
public class TopArticleFormDTO { |
|||
/** |
|||
* 文章id |
|||
*/ |
|||
@NotBlank(message = "文章id不能为空") |
|||
private String articleId; |
|||
/** |
|||
* top |
|||
* cancel_top |
|||
*/ |
|||
@NotBlank(message = "type不能为空,置顶:top,取消置顶:cancel_top") |
|||
private String type; |
|||
} |
|||
|
Loading…
Reference in new issue