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.
22 lines
504 B
Java
22 lines
504 B
Java
package com.glxp.api.req.purchase;
|
|
|
|
import com.glxp.api.res.basic.UdiRelevanceResponse;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class AddPurInquiryOfferItemRequest {
|
|
|
|
@NotNull(message ="产品不可为空!")
|
|
private List<UdiRelevanceResponse> productIds;
|
|
|
|
/**
|
|
* 采购计划ID外键
|
|
*/
|
|
@NotEmpty(message = "采购订单id不可为空!")
|
|
private String orderIdFk;
|
|
}
|