package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
/**
|
* @author pang.jiabao
|
* @description 冠鸿江铜接口交互统一入参dto
|
* @createDate 2024/7/3 9:45
|
*/
|
@Data
|
public class GhjtApiParam {
|
|
private Integer workNo; // 工作号
|
|
private Integer outLocResult; // 出库结果上报 1.完成,其他异常
|
|
private Integer staNo;
|
|
private Integer check; // 复核确认标识,1.确认,其他异常
|
}
|