///////////////////////////////////////////////////////////////////////////////// // 宁波拓通e智造平台 ToTong Next Builder // // https://git.tuotong-tech.com/tnb/tnb-server // ///////////////////////////////////////////////////////////////////////////////// @using Tnb.Core; @using Tnb.Vengine; @using Tnb.Vengine.Domain; @{ AcmenVmodelContext context = Model; Vmodel vm = context.Vm; } using Microsoft.AspNetCore.Mvc; using Tnb.Core; using Tnb.Vengine.AppService; using Tnb.Vengine.DataAccess; using Tnb.Vengine.Domain; using @(context.NsPrefix + "." + vm.areaCode + ".Domain"); namespace @(context.NsPrefix + "." + vm.areaCode + ".AppService"); /// /// 模型 @vm.vmName 应用服务类 /// [ApiExplorerSettings(GroupName = Consts.ApiGroupCode)] public class @(vm.vmCode)AppService : VengineAppService<@(vm.vmCode)> { /// /// 构造函数 /// public @(vm.vmCode)AppService(IDataAccess da) : base(da) { } }