fix: 货柜预览图
parent
bab8df30a6
commit
7c8b73e410
@ -0,0 +1,74 @@
|
|||||||
|
package com.glxp.api.res.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import io.swagger.models.auth.In;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author : zhuzhu
|
||||||
|
* @date : 2024/11/4 11:08
|
||||||
|
* @modyified By :
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SysWorkplaceQueueViewResponse {
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 货架编码
|
||||||
|
*/
|
||||||
|
@TableField(value = "code")
|
||||||
|
@ApiModelProperty(value = "货架编码")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 货架名称
|
||||||
|
*/
|
||||||
|
@TableField(value = "`name`")
|
||||||
|
@ApiModelProperty(value = "货架名称")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
|
||||||
|
private String layerCode;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 红灯
|
||||||
|
*/
|
||||||
|
@TableField(value = "red")
|
||||||
|
@ApiModelProperty(value = "红灯")
|
||||||
|
private Long red;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 橘灯
|
||||||
|
*/
|
||||||
|
@TableField(value = "orange")
|
||||||
|
@ApiModelProperty(value = "橘灯")
|
||||||
|
private Long orange;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 蓝色
|
||||||
|
*/
|
||||||
|
@TableField(value = "blue")
|
||||||
|
@ApiModelProperty(value = "蓝色")
|
||||||
|
private Long blue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 绿色
|
||||||
|
*/
|
||||||
|
@TableField(value = "green")
|
||||||
|
@ApiModelProperty(value = "绿色")
|
||||||
|
private Long green;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private Integer row;
|
||||||
|
private Integer height;
|
||||||
|
private List<SysWorkplaceQueueViewResponse> sysWorkplaceQueues;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue