12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.cooleshow.teacher.bean;
- import java.util.List;
- /**
- * 创建日期:2022/5/31 17:14
- *
- * @author Ryan
- * 类说明:
- */
- public class HelpCenterContentBean {
- public int limit;
- public int nextPage;
- public int offset;
- public int pageNo;
- public int prePage;
- public int total;
- public int totalPage;
- public List<RowsBean> rows;
- public static class RowsBean{
- /*
- "status": 0,
- "order": 0,
- "title": "测试老师公告",
- "catalogId": 2,
- "releaseTime": "2022-05-17 16:20:54",
- "releaseStatus": 1,
- "catalogType": "TEACHER",
- "createOn": "2022-05-17 16:21:04",
- "modifyOn": "2022-05-17 16:28:31",
- "createBy": 56,
- "updateName": "刘俊驰",
- "updateBy": 56,
- "id": 24,
- "content": "\u003Cp\u003E测试老师公告内容\u003C/p\u003E"
- */
- public int status;
- public int order;
- public String title;
- public String releaseTime;
- public int releaseStatus;
- public String catalogType;
- public String createOn;
- public String modifyOn;
- public long createBy;
- public String updateName;
- public long updateBy;
- public long id;
- public String content;
- }
- }
|