SysFileService.cs
725 Bytes
using Hh.Mes.Common.log;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
using Hh.Mes.Service.Repository;
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.Service
{
public class SysFileService : RepositorySqlSugar<Sys_File>
{
/// <summary>
/// 获取
/// </summary>
public dynamic GetData()
{
var response = new Response();
return ExceptionsHelp.Instance.ExecuteT(() =>
{
response.Result = new
{
cs = 1,
cs2 = 2
};
return response;
});
}
}
}