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.
36 lines
857 B
Java
36 lines
857 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
|
|
import com.glxp.api.res.thrsys.ThrProductsResponse;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class UdiCombineRequest {
|
|
|
|
List<String> keys;
|
|
List<String> devKeys;
|
|
private String thirdId;
|
|
private List<String> thirdIds;
|
|
private String erpName;
|
|
private ThrProductsResponse erpProductsResponse;
|
|
private Long relId;
|
|
private String thirdSys;
|
|
private Boolean isRlInv;
|
|
private FilterThrProductsRequest query;
|
|
private String erpId;
|
|
private Long customerId;
|
|
private Boolean supEnable;
|
|
private String manufactory;
|
|
private String measname;
|
|
private String supName;
|
|
private String price;
|
|
private boolean idSpliUdi;
|
|
private String uuid;
|
|
|
|
|
|
private String ybbm;
|
|
private String sptm;
|
|
}
|