Result.java 950 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
package cn.timer.api.utils;


import java.io.Serializable;

import org.springframework.stereotype.Service;

import lombok.Data;

/**
 * @author Exrickx
 * 前后端交互数据标准
 */
@Service("result")
@Data
public class Result<T> implements Serializable{

    private static final long serialVersionUID = 1L;

    /**
     * 成功标志
     */
    private boolean result;

    /**
     * 失败消息
     */
    private String message;

    /**
     * 返回代码
     */
    private String code;

    /**
     * 时间戳
     */
    private long timestamp = System.currentTimeMillis();

    /**
     * 结果对象
     */
    private T data;
    
    /**
     * 结果对象
     */
    private T other;
    
    /**
     * 分页
     */
    private Long Current;
    /**
     * 分页
     */
    private Long Pages;
    /**
     * 分页
     */
    private Long Total;
    /**
     * 分页
     */
    private Long Size;
    
    
}