/
dmuruz
/
Course_Service
Обзор
Документация
Войти
/
dmuruz
/
Course_Service
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
src/main/java/org/example/dto/LessonDTO.java
54 строки
1 KB
Danil Muruz
MVP
24 апр 2025, 09:39
24 апр 2025, 09:39
16b1c45
Код
Авторство
О чём код?
package org.example.dto; public class LessonDTO { private Long id; private String name; private String description; private String jsonSchema; private Integer durationSteps; private Integer orderNum; private Long courseId; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getJsonSchema() { return jsonSchema; } public void setJsonSchema(String jsonSchema) { this.jsonSchema = jsonSchema; } public Integer getDurationSteps() { return durationSteps; } public void setDurationSteps(Integer durationSteps) { this.durationSteps = durationSteps; } public Integer getOrderNum() { return orderNum; } public void setOrderNum(Integer orderNum) { this.orderNum = orderNum; } public Long getCourseId() { return courseId; } public void setCourseId(Long courseId) { this.courseId = courseId; } }