You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
512 B

2 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Models.UniApiEntity
{
public class ServiceResult
{
public bool Success { get; set; }//是否执行成功
public string Type { get; set; }//任务类型,目前传递的是表格名称
public string Data { get; set; }//Json格式的数据
public string Message { get; set; }//返回信息,执行失败时,返回Exception信息
}
}