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.
34 lines
406 B
Java
34 lines
406 B
Java
package com.glxp.api.req.purchase;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 采购单据打印参数
|
|
*/
|
|
@Data
|
|
public class purPlanPrintRequest {
|
|
|
|
/**
|
|
* 打印id
|
|
*/
|
|
private List<String> ids;
|
|
|
|
/**
|
|
* 模板ID
|
|
*/
|
|
private String templateId;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* 采购id
|
|
*/
|
|
private Long id;
|
|
|
|
}
|