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.
22 lines
367 B
Java
22 lines
367 B
Java
11 months ago
|
package com.glxp.api.req.basic;
|
||
|
|
||
|
import com.glxp.api.util.page.ListPageRequest;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @author : zhangsan
|
||
|
* @date : 2024/8/14 18:55
|
||
|
* @modyified By :
|
||
|
*/
|
||
|
|
||
|
@Data
|
||
|
public class BasicCollectUserRequest extends ListPageRequest {
|
||
|
|
||
|
private String userId;
|
||
|
private String workplaceId;
|
||
|
private String userKey;
|
||
|
private String workKey;
|
||
|
|
||
|
|
||
|
}
|