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.
20 lines
388 B
Java
20 lines
388 B
Java
|
3 years ago
|
package com.glxp.api.req.inout;
|
||
|
|
|
||
|
|
import com.glxp.api.util.page.ListPageRequest;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class IoOrderRelRequest extends ListPageRequest {
|
||
|
|
|
||
|
|
private String code;
|
||
|
|
private String cpmctymc;
|
||
|
|
private String nameCode;
|
||
|
|
private String ggxh;
|
||
|
|
private String serialNo;
|
||
|
|
private String startTime;
|
||
|
|
private String endTime;
|
||
|
|
}
|