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.
|
package com.glxp.api.req.inv;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 添加库粗养护记录详情接口参数
|
|
*/
|
|
@Data
|
|
public class AddInvMAOrderDetailRequest {
|
|
|
|
/**
|
|
* 库存养护记录号
|
|
*/
|
|
private String orderIdFk;
|
|
|
|
/**
|
|
* 库存详情ID集合
|
|
*/
|
|
List<String> invProductIds;
|
|
|
|
}
|