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.
29 lines
512 B
Java
29 lines
512 B
Java
package com.glxp.api.req.thrsys;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
|
|
@Data
|
|
public class GenerateOrderRequest {
|
|
|
|
/**
|
|
* 来源单据号
|
|
*/
|
|
@NotEmpty(message = "来源单据号不能为空!")
|
|
private String billNo;
|
|
|
|
/**
|
|
* 业务类型
|
|
*/
|
|
@NotEmpty(message = "业务类型不能为空!")
|
|
private String action;
|
|
|
|
/**
|
|
* 往来单位
|
|
*/
|
|
@NotEmpty(message = "往来单位不能为空!")
|
|
private String fromCorp;
|
|
|
|
}
|