1234567891011121314151617181920212223242526 |
- package com.sooka.sponest.data.commandcenter.domian;
- import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
- import lombok.Data;
- /**
- * @program: ruoyi
- * @description: yy
- * @author: yy
- * @create: 2022-09-21 09:57
- **/
- @Data
- public class CommandCenterBO extends BaseBusinessEntity {
- // 部门id
- private String deptId;
- // 日期标记
- private String timeTag;
- // 关键字
- private String keyWord;
- private Integer pageNum;
- private Integer pageSize;
- }
|