1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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 String questionSubject;
- private Integer no;
- private String target;
- private String content;
- 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;
- }
- public String getQuestionSubject() {
- return questionSubject;
- }
- public void setQuestionSubject(String questionSubject) {
- this.questionSubject = questionSubject;
- }
- public Integer getNo() {
- return no;
- }
- public void setNo(Integer no) {
- this.no = no;
- }
- }
|