yanjinhui
2025-03-31 543f0a71b763660a1b5d12ac2bc0e1259e1ea4cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_ITaskInfoService
{
    public interface ITemplateServer : IService<Dt_Template>
    {
        /// <summary>
        /// 查看具体那个模板
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        WebResponseContent GetTemp(int id);
    }
}