5 changed files with 77 additions and 7 deletions
@ -0,0 +1,19 @@ |
|||
package com.bnyer.img.dto; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
import lombok.Setter; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Getter |
|||
@Setter |
|||
@ApiModel("feedback分页接收类") |
|||
public class FeedBackPageDto implements Serializable { |
|||
|
|||
@ApiModelProperty(value="平台渠道") |
|||
private String source; |
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
package com.bnyer.img.dto; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
import lombok.Setter; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Getter |
|||
@Setter |
|||
@ApiModel("feedback状态接收类") |
|||
public class FeedBackStatusDto implements Serializable { |
|||
|
|||
@ApiModelProperty(value="主键Id") |
|||
private Long id; |
|||
|
|||
@NotNull(message = "状态不能为空!") |
|||
@ApiModelProperty(value="状态") |
|||
private String status; |
|||
|
|||
|
|||
} |
|||
Loading…
Reference in new issue