| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.xjrsoft.module.textbook.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 教材教辅征订表单入参
- * @Author szs
- * @Date: 2024-06-04
- * @Version 1.0
- */
- @Data
- public class WfTextbookSubscriptionDto {
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private String id;
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private Long wfTextbookSubscriptionItemId;
- /**
- * 教材类型(xjr_dictionary_item[textbook_type])
- */
- @ApiModelProperty("教材类型(xjr_dictionary_item[textbook_type])")
- private String textbookType;
- /**
- * 书名
- */
- @ApiModelProperty("书名")
- private String bookName;
- /**
- * 课程编号(base_course_subject)
- */
- @ApiModelProperty("课程编号(base_course_subject)")
- private String courseSubjectIdCn;
- }
|