mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
485 B
25 lines
485 B
package com.alibaba.atasuper.web.controller.demo.request; |
|
|
|
import com.alibaba.atasuper.tools.base.wrapper.request.WebPageRequest; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Data; |
|
import lombok.NoArgsConstructor; |
|
import lombok.experimental.SuperBuilder; |
|
|
|
/** |
|
* 列表对象 |
|
* |
|
* @author 是仪 |
|
*/ |
|
@Data |
|
@SuperBuilder |
|
@NoArgsConstructor |
|
@AllArgsConstructor |
|
public class DemoPageQueryRequest extends WebPageRequest { |
|
|
|
/** |
|
* 用户id |
|
*/ |
|
private String userId; |
|
}
|
|
|