You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
562 B
Java
24 lines
562 B
Java
package com.glxp.api.entity.inout;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class PdaOrderEntity {
|
|
|
|
private String exportStatus; //导出状态
|
|
private String type; //业务类型
|
|
private String order; //单号
|
|
private String inout;
|
|
private String FromCorpID;
|
|
private String fromCorp;
|
|
private int version;
|
|
private String docid;
|
|
private String stockCheckFk;
|
|
private String supId;
|
|
private String fromDeptCode;
|
|
private String fromInvCode;
|
|
private String deptCode;
|
|
private String invCode;
|
|
|
|
}
|