12345678910111213141516171819202122232425262728293031323334353637 |
- package com.qxgmat.dto.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.Faq;
- @Dto(entity = Faq.class)
- public class FaqDto {
- private String channel;
- private String position;
- private String content;
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getChannel() {
- return channel;
- }
- public void setChannel(String channel) {
- this.channel = channel;
- }
- public String getPosition() {
- return position;
- }
- public void setPosition(String position) {
- this.position = position;
- }
- }
|