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.
24 lines
512 B
Java
24 lines
512 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class BasicEntrustRecRequest extends ListPageRequest {
|
|
|
|
private Integer id;
|
|
private String action;
|
|
private String entrustInv;
|
|
private String entrustDept;
|
|
private Long entrustUser;
|
|
private String userId;
|
|
private Date updateTime;
|
|
private String curInv;
|
|
private String curDept;
|
|
private String lastUpdateTime;
|
|
private String name;
|
|
|
|
}
|