分支自 SuZhouGuanHong/TaiYuanTaiZhong

WMS
dengjunjie
2023-12-13 d772a6cddc8ed656a2cb5604fc02f6e891db546e
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
/*
 *Author:jxx
 *Contact:283591387@qq.com
 *Date:2018-07-01
 * 此代码由框架生成,请勿随意更改
 */
using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using {Namespace}.IServices;
using {StartName}.Core.Controllers.Basic;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Entity.AttributeManager;
 
namespace {Namespace}.Controllers
{   
    [ApiExplorerSettings(IgnoreApi = true)]
    [PermissionTable(Name = "{TableName}")]
    public partial class {TableName}Controller : BaseController<I{TableName}Service>
    {
        public {TableName}Controller(I{TableName}Service service)
        : base({BaseOptions}, service)
        {
        }
    }
}