|
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
@@ -16,6 +17,10 @@ import java.io.Serializable;
|
|
|
@ApiModel
|
|
|
public class ListQrBoxCodeMappingReq extends PageReq implements Serializable {
|
|
|
|
|
|
+ @ApiModelProperty(value = "码包ID")
|
|
|
+ @NotNull(message = "码包ID不能为空")
|
|
|
+ private Long packageId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "激活状态 0-未激活 1-已激活 9-已作废")
|
|
|
private Integer activeStatus;
|
|
|
|