| 12345678910111213141516171819202122 |
- package com.xjrsoft.module.textbook.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 教材教辅征订记录表单出参
- * @Author szs
- * @Date: 2023-12-25
- * @Version 1.0
- */
- @Data
- public class TextbookSubscriptionClassVo {
- /**
- * 序号
- */
- @ApiModelProperty("班级名称")
- private String name;
- }
|