| 123456789101112131415161718192021222324252627 |
- package com.xjrsoft.module.base.dto;
- import com.xjrsoft.common.page.PageInput;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.time.LocalDate;
- /**
- * @title: 班级动态表分页查询入参
- * @Author dzx
- * @Date: 2024-09-04
- * @Version 1.0
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class BaseClassDynamicsRelationPageDto extends PageInput {
- @ApiModelProperty("是否已阅读(0:否 1:是)")
- private Integer readMark;
- @ApiModelProperty("动态id(base_class_dynamics)")
- private Long baseClassDynamicsId;
- }
|