package com.yuanchu.limslaboratory.pojo.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; @Data @EqualsAndHashCode(callSuper = false) @ApiModel(value="标准库-->规格型号-->用于对规格状态的修改", description="用于对规格状态的修改") public class UpdateSpeStateSpecificationsDto { @ApiModelProperty(value = "规格id", example = "2", required = true) private Integer id; @ApiModelProperty(value = "规格状态 0:停用;1:正常;-1:草稿", example = "1", required = true) private Integer spe_state; }