123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.qxgmat.dto.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserFeedbackError;
- @Dto(entity = UserFeedbackError.class)
- public class UserFeedbackErrorDataDto {
- private Integer dataId;
- private String title;
- private String position;
- private String originContent;
- private String content;
- public String getPosition() {
- return position;
- }
- public void setPosition(String position) {
- this.position = position;
- }
- public String getOriginContent() {
- return originContent;
- }
- public void setOriginContent(String originContent) {
- this.originContent = originContent;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Integer getDataId() {
- return dataId;
- }
- public void setDataId(Integer dataId) {
- this.dataId = dataId;
- }
- }
|