| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.xjrsoft.module.student.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.time.LocalTime;
- import java.time.LocalDateTime;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Date;
- /**
- * @title: 攀宝学期对应表单出参
- * @Author zsz
- * @Date: 2024-03-18
- * @Version 1.0
- */
- @Data
- public class PbSemesterConfigVo {
- /**
- *
- */
- @ApiModelProperty("")
- private Long id;
- /**
- * 学期
- */
- @ApiModelProperty("学期")
- private Long baseSemesterId;
- /**
- * 攀宝学期code
- */
- @ApiModelProperty("攀宝学期code")
- private String beltcode;
- }
|