12345678910111213141516171819202122232425262728293031323334353637 |
- package com.qxgmat.dto.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserTextbookFeedback;
- @Dto(entity = UserTextbookFeedback.class)
- public class UserTextbookFeedbackDto {
- private Integer topicId;
- private String target;
- private String content;
- public Integer getTopicId() {
- return topicId;
- }
- public void setTopicId(Integer topicId) {
- this.topicId = topicId;
- }
- public String getTarget() {
- return target;
- }
- public void setTarget(String target) {
- this.target = target;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }
|