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.
28 lines
503 B
Java
28 lines
503 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author : zhangsan
|
|
* @date : 2024/8/14 18:55
|
|
* @modyified By :
|
|
*/
|
|
|
|
@Data
|
|
public class BasicCollectUserRequest extends ListPageRequest {
|
|
|
|
private String userId;
|
|
private List<String> workplaceId;
|
|
private String workplaceCode;
|
|
private String code;//单据编号
|
|
private String userKey;
|
|
private String workKey;
|
|
|
|
private Integer autoUserId;
|
|
|
|
|
|
}
|