11/7 打印功能
parent
25a0b9b9a4
commit
cc6f9109fa
@ -0,0 +1,79 @@
|
||||
package com.glxp.api.res.basic;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author : zhuzhu
|
||||
* @date : 2024/11/4 11:08
|
||||
* @modyified By :
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class SysWorkplaceFreightPrintResponse {
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 货位编码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 货位名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 工位ID
|
||||
*/
|
||||
private Long workPlaceIdFk;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private String createUser;
|
||||
|
||||
private String updateUser;
|
||||
|
||||
|
||||
/**
|
||||
* 所属工位
|
||||
*/
|
||||
private String workPlaceName;
|
||||
|
||||
/**
|
||||
* 出货槽编码
|
||||
*/
|
||||
@TableField(value = "code")
|
||||
@ApiModelProperty(value = "货位编码")
|
||||
private String queueCode;
|
||||
|
||||
/**
|
||||
* 摆货层code
|
||||
*/
|
||||
@TableField(value = "code")
|
||||
@ApiModelProperty(value = "货位编码")
|
||||
private String layerCode;
|
||||
|
||||
|
||||
/**
|
||||
* 出货槽数量
|
||||
*/
|
||||
@TableField(value = "queueNum")
|
||||
@ApiModelProperty(value = "")
|
||||
private Integer queueNum;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue