| 12345678910111213141516171819 |
- package com.xjrsoft.module.app.dto;
- import com.xjrsoft.common.page.PageInput;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * @title: APP端功能模块管理分页查询入参
- * @Author fanxp
- * @Date: 2023-11-07
- * @Version 1.0
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class BaseAppFunctionPageDto extends PageInput {
- }
|