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.
udi-wms-java/src/main/java/com/glxp/api/req/purchase/PostSelCertRequest.java

18 lines
364 B
Java

package com.glxp.api.req.purchase;
import com.glxp.api.entity.purchase.SupCertSetEntity;
import lombok.Data;
import java.util.List;
@Data
public class PostSelCertRequest {
private String customerId;
private Integer certType;
private String manufacturerIdFk;
private String productIdFk;
private List<SupCertSetEntity> supCertSetEntities;
}