FieldsDTO.java 1.31 KB
package com.pipihelper.project.feishu.dto.doc;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
 * @author xiongjian
 * @date 2022/7/4
 */
@NoArgsConstructor
@Data
public class FieldsDTO {
    @JSONField(name = "邮箱")
    private String mail;
    @JSONField(name = "姓名")
    private String name;
    @JSONField(name = "人员")
    private List<PeopleDTO> people;
    @JSONField(name = "手机")
    private String phone;
    @JSONField(name = "userId")
    private String userId;
    @JSONField(name = "更新时间")
    private Long updateTime;
    @JSONField(name = "token")
    private String token;

    @JSONField(name = "任务名")
    private String taskName;
    @JSONField(name = "任务描述")
    private String taskDescription;
    @JSONField(name = "截止时间")
    private Long due;
    @JSONField(name = "任务来源")
    private String origin;
    @JSONField(name = "执行人")
    private String collaborators;
    @JSONField(name = "关注人")
    private String followers;

    @JSONField(name = "消息")
    private String msg;
    @JSONField(name = "消息人")
    private String receiverIds;

    @JSONField(name = "状态")
    private String statues;
    @JSONField(name = "备注")
    private String note;
}