using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.ApiModel.Platform
{
    public class ResultModel
    {
        /// 
        /// 是否成功
        /// 
        public bool IsSucceed { get; set; }
        /// 
        /// 描述。
        /// 
        public string Msg { get; set; }
        public List SelectRowKeys{get;set;}
    }
}