Commit 1084091c by XiaHou

权星登录注册

parent 74a8054b
package com.macro.mall.model.dto.quanxing.common;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@Data
public class BatchOperationDto implements Serializable {
@ApiModelProperty(value = "必传____ id集合 根绝,(英文逗号隔开!)")
private String ids;
@ApiModelProperty(value = "必传____ 状态 例如:删除状态0 未删除 1已删除 传入1则表示软删除")
private Integer status;
@ApiModelProperty(value = "必传____ 是否真删 0表否 1表是 在进行删除操作时候 如果需要将此数据从数据库删除 将传入1.其他情况传入0")
private Integer isDelete;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment