2 changed files with 31 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
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 work@yujt.net.cn |
|||
* @date 2019/9/7 11:19 |
|||
*/ |
|||
@Data |
|||
public class EpdcNewsListByCategoryFromDTO extends EpdcNewsListFromDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -6782308933818246525L; |
|||
|
|||
/** |
|||
* 新闻类别编码 |
|||
*/ |
|||
private String categoryCode; |
|||
|
|||
} |
Loading…
Reference in new issue