| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- package com.template.model.seewo;
- import java.util.*;
- import com.seewo.open.sdk.OpenApiResult;
- import com.seewo.open.sdk.HttpResponse;
- /**
- * seewo-open API: 学生请假申请与查询api
- *
- *
- * @author auto create
- * @since 2.0.1 2024-1-4
- */
- public class StudentLeaveStudentLeaveRequestHandlerResult extends OpenApiResult {
- public StudentLeaveStudentLeaveRequestHandlerResult(HttpResponse response) {
- super(response);
- }
- /**
- * 响应体,MimeType为 application/json
- */
- private JSONResponseBody responseBody;
- public JSONResponseBody getResponseBody() {
- return this.responseBody;
- }
- public void setResponseBody(JSONResponseBody responseBody) {
- this.responseBody = responseBody;
- }
- public static class JSONResponseBody {
- /**
- * 返回码
- */
- private String code;
- /**
- * 错误信息
- */
- private String message;
- /**
- * 业务数据
- */
- private List<StudentLeaveRecordResult> data;
- public String getCode() {
- return this.code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getMessage() {
- return this.message;
- }
- public void setMessage(String message) {
- this.message = message;
- }
- public List<StudentLeaveRecordResult> getData() {
- return this.data;
- }
- public void setData(List<StudentLeaveRecordResult> data) {
- this.data = data;
- }
- }
- public static class StudentLeaveRecordResult {
- /**
- * 用户ID
- */
- private String userUid;
- /**
- * 学生姓名
- */
- private String userName;
- /**
- * 请假类型:0事假,1病假
- */
- private Integer type;
- /**
- * 请假原因
- */
- private String reason;
- /**
- * 开始时间
- */
- private String startTime;
- /**
- * 结束时间
- */
- private String endTime;
- /**
- * 附件列表
- */
- private List<String> attachments;
- /**
- * 请假申请时间
- */
- private String createTime;
- public String getUserUid() {
- return this.userUid;
- }
- public void setUserUid(String userUid) {
- this.userUid = userUid;
- }
- public String getUserName() {
- return this.userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public Integer getType() {
- return this.type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getReason() {
- return this.reason;
- }
- public void setReason(String reason) {
- this.reason = reason;
- }
- public String getStartTime() {
- return this.startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getEndTime() {
- return this.endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public List<String> getAttachments() {
- return this.attachments;
- }
- public void setAttachments(List<String> attachments) {
- this.attachments = attachments;
- }
- public String getCreateTime() {
- return this.createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- }
- }
|