删除图片和收藏夹
parent
34913fe321
commit
511e3c006b
@ -0,0 +1,23 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "收藏对象", description = "收藏对象描述")
|
||||
public class FavorVo {
|
||||
|
||||
@NotEmpty(message = "不能传入空值")
|
||||
@ApiModelProperty(value = "收藏对象数组", required = true, example = "A0001")
|
||||
private List<Integer> list;
|
||||
|
||||
@ApiModelProperty(value = "是否收藏", example = "0--删除收藏 1--收藏")
|
||||
private Integer type;
|
||||
|
||||
}
|
Loading…
Reference in New Issue