| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.management.domain.SlGoodsShelf; |
| | | import com.ruoyi.management.domain.dto.ManagementimgVolumeProductionZyVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "转移管理详情", description = "转移管理详情") |
| | | public class VolumeProductionZyglInfoVO { |
| | |
| | | |
| | | @ApiModelProperty("1 待管理员审核,2 待主管审核,3 待主任审核,4 待入库,5 待从重新提交, 6已完成, 7,已取消") |
| | | private Integer auditStatus; |
| | | |
| | | @ApiModelProperty("物资列表") |
| | | private PageDTO<ManagementimgVolumeProductionZyVO> list; |
| | | |
| | | @ApiModelProperty("楼层 1=一层 2=二层。。。") |
| | | private List<String> number; |
| | | @ApiModelProperty("货架列表") |
| | | private List<SlGoodsShelf> goodsShelfList; |
| | | } |