Blame view

sys/Hh.Mes.Service/ApiService/SysFileService.cs 725 Bytes
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
            });
        }
    }
}