1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.qxgmat.dto.response;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.SentenceArticle;
- @Dto(entity = SentenceArticle.class)
- public class UserSentenceArticleDto {
- private Integer process;
- private String title;
- private Integer isTrail;
- private Integer part;
- public Integer getProcess() {
- return process;
- }
- public void setProcess(Integer process) {
- this.process = process;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Integer getIsTrail() {
- return isTrail;
- }
- public void setIsTrail(Integer isTrail) {
- this.isTrail = isTrail;
- }
- public Integer getPart() {
- return part;
- }
- public void setPart(Integer part) {
- this.part = part;
- }
- }
|