12345678910111213141516171819202122232425262728293031323334353637 |
- package com.qxgmat.dto.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserNoteCourse;
- @Dto(entity = UserNoteCourse.class)
- public class UserNoteCourseDto {
- private Integer courseId;
- private Integer courseNoId;
- private String content;
- public Integer getCourseId() {
- return courseId;
- }
- public void setCourseId(Integer courseId) {
- this.courseId = courseId;
- }
- public Integer getCourseNoId() {
- return courseNoId;
- }
- public void setCourseNoId(Integer courseNoId) {
- this.courseNoId = courseNoId;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }
|