RspComBo.java 302 Bytes
Newer Older
zhaojg committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.brilliance.bo;

import lombok.Data;

import java.util.List;

/**
 * 公共返回
 */
@Data
public class RspComBo<T> {

    public Integer resultcode;

    public String message;

    public Integer type;

    public String otherinfo;

    public List<T> resultdata;
}