| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.xjrsoft.module.student.vo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import com.xjrsoft.common.annotation.Trans;
- import com.xjrsoft.common.enums.TransType;
- import java.time.LocalTime;
- import java.time.LocalDateTime;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @title: 考核项目表分页列表出参
- * @Author dzx
- * @Date: 2024-03-05
- * @Version 1.0
- */
- @Data
- public class BaseStudentAssessmentItemPageVo {
- /**
- *
- */
- @ApiModelProperty("")
- private String id;
- /**
- *
- */
- @ApiModelProperty("")
- private Long createUserId;
- /**
- *
- */
- @ApiModelProperty("")
- private Date createDate;
- /**
- *
- */
- @ApiModelProperty("")
- private Long modifyUserId;
- /**
- *
- */
- @ApiModelProperty("")
- private Date modifyDate;
- /**
- *
- */
- @ApiModelProperty("")
- private Integer deleteMark;
- /**
- *
- */
- @ApiModelProperty("")
- private Integer enabledMark;
- /**
- * 项目名称
- */
- @ApiModelProperty("项目名称")
- private String name;
- /**
- * 学生考核类别(base_student_assessment_category)
- */
- @ApiModelProperty("学生考核类别(base_student_assessment_category)")
- private Long baseStudentAssessmentCategoryId;
- }
|