This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.res.inout;
import lombok.Data;
/**
* 扫码单据单号实体类,包含除ID外所有单号字段
*/
@Data
public class OrderNoResult {
private String id;
//补单单号
private String supplementNo;
//缺量补单上级单号
private String originUllageSupNo;
//缺量补单单号
private String ullageSupNo;
//复制单号,多个单号之间使用英文逗号,分隔
private String replicateNo;
//验收出库关联的预验收入库单,多个单号,隔开
private String preInBillNo;
//预验收入库单关联的预验收出库单,多个单号,隔开
private String preOutBillNo;
}