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.
18 lines
364 B
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;
|
|
}
|