AjaxResultCrm.java 510 Bytes
package com.huaheng.framework.web.domain;

import com.alibaba.fastjson.JSON;

import java.io.Serializable;

/**
 * 操作消息提醒
 *
 * @author huaheng
 */
public class AjaxResultCrm<T> implements Serializable
{
    private static final long serialVersionUID = 1L;

    private Integer status;

    private String success;

    private String msg;

    private T response;


    public  AjaxResult setResult(){

        return new AjaxResult<T>().setCode(status).setMsg(msg).setData(response);
    }




}