人员信息添加 是否发送短信 短信发送跑批 添加短息发送过来
This commit is contained in:
parent
e49f8fbc06
commit
1a7c58a7ad
@ -311,6 +311,12 @@ namespace APT.BaseData.Domain.Entities.FM
|
|||||||
|
|
||||||
[Description("人员类别名称")]
|
[Description("人员类别名称")]
|
||||||
[DataFieldLength(50)]
|
[DataFieldLength(50)]
|
||||||
public string USER_TYPE_NAME { get; set; }
|
public string USER_TYPE_NAME { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否接收短信
|
||||||
|
/// </summary>
|
||||||
|
[Description("是否接收短信")]
|
||||||
|
public bool ISGETMSG { get; set; } = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
137043
APT.Data.Migrations/Migrations/20251218062611_wyw2025121801.Designer.cs
generated
Normal file
137043
APT.Data.Migrations/Migrations/20251218062611_wyw2025121801.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,24 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
namespace APT.Data.Migrations.Migrations
|
||||||
|
{
|
||||||
|
public partial class wyw2025121801 : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AddColumn<bool>(
|
||||||
|
name: "ISGETMSG",
|
||||||
|
table: "T_FM_USER",
|
||||||
|
type: "bit",
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: true);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "ISGETMSG",
|
||||||
|
table: "T_FM_USER");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -6797,6 +6797,9 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
.HasMaxLength(50)
|
.HasMaxLength(50)
|
||||||
.HasColumnType("nvarchar(50)");
|
.HasColumnType("nvarchar(50)");
|
||||||
|
|
||||||
|
b.Property<bool>("ISGETMSG")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
b.Property<bool>("IS_DELETED")
|
b.Property<bool>("IS_DELETED")
|
||||||
.HasColumnType("bit");
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": true,
|
"nativeDebugging": true,
|
||||||
"applicationUrl": "http://localhost:5101"
|
"applicationUrl": "http://localhost:5101"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": true,
|
"nativeDebugging": true,
|
||||||
"applicationUrl": "http://localhost:5178"
|
"applicationUrl": "http://localhost:5178"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5107"
|
"applicationUrl": "http://localhost:5107"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"applicationUrl": "http://localhost:5119",
|
"applicationUrl": "http://localhost:5119",
|
||||||
"nativeDebugging": false
|
"nativeDebugging": false
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": true,
|
"nativeDebugging": true,
|
||||||
"applicationUrl": "http://localhost:5117"
|
"applicationUrl": "http://localhost:5117"
|
||||||
|
|||||||
@ -1,137 +1,128 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// T4模板文件:基础接口类
|
||||||
|
// 此代码由T4模板自动生成
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
using APT.Infrastructure.Core;
|
||||||
//------------------------------------------------------------------------------
|
using Microsoft.AspNetCore.Mvc;
|
||||||
// T4模板文件:基础接口类
|
using System.Collections.Generic;
|
||||||
// 此代码由T4模板自动生成
|
using APT.Utility;
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
using APT.Infrastructure.Api;
|
||||||
//------------------------------------------------------------------------------
|
using APT.BaseData.Domain.ApiModel.PF;
|
||||||
using APT.Infrastructure.Core;
|
namespace APT.LG.WebApi.Controllers.Api
|
||||||
using Microsoft.AspNetCore.Mvc;
|
{
|
||||||
using System.Collections.Generic;
|
|
||||||
using APT.Utility;
|
|
||||||
using APT.Infrastructure.Api;
|
|
||||||
using APT.BaseData.Domain.ApiModel.PF;
|
|
||||||
namespace APT.LG.WebApi.Controllers.Api
|
|
||||||
{
|
|
||||||
using APT.BaseData.Domain.Entities.LG;
|
using APT.BaseData.Domain.Entities.LG;
|
||||||
|
#region Oprate-表单操作日志表
|
||||||
#region Oprate-表单操作日志表
|
/// <summary>
|
||||||
/// <summary>
|
/// 表单操作日志表
|
||||||
/// 表单操作日志表
|
/// </summary>
|
||||||
/// </summary>
|
[Route("api/LG/Oprate")]
|
||||||
[Route("api/LG/Oprate")]
|
public partial class OprateController : AuthorizeApiController<T_LG_OPRATE>
|
||||||
public partial class OprateController : AuthorizeApiController<T_LG_OPRATE>
|
{
|
||||||
{
|
/// <summary>
|
||||||
/// <summary>
|
/// 查询所有数据
|
||||||
/// 查询所有数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Entities")]
|
||||||
[HttpPost, Route("Entities")]
|
public JsonActionResult<IEnumerable<T_LG_OPRATE>> Entities([FromBody]KeywordFilter filter)
|
||||||
public JsonActionResult<IEnumerable<T_LG_OPRATE>> Entities([FromBody]KeywordFilter filter)
|
{
|
||||||
{
|
return WitEntities(null, filter);
|
||||||
return WitEntities(null, filter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 排序查询所有数据
|
||||||
/// 排序查询所有数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
|
||||||
|
[HttpPost, Route("OrderEntities")]
|
||||||
[HttpPost, Route("OrderEntities")]
|
public JsonActionResult<IEnumerable<T_LG_OPRATE>> OrderEntities([FromBody]KeywordFilter filter)
|
||||||
public JsonActionResult<IEnumerable<T_LG_OPRATE>> OrderEntities([FromBody]KeywordFilter filter)
|
{
|
||||||
{
|
return WitOrderEntities(null, filter);
|
||||||
return WitOrderEntities(null, filter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 分页查询数据
|
||||||
/// 分页查询数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Paged")]
|
||||||
[HttpPost, Route("Paged")]
|
public PagedActionResult<T_LG_OPRATE> Paged([FromBody]KeywordPageFilter pageFilter)
|
||||||
public PagedActionResult<T_LG_OPRATE> Paged([FromBody]KeywordPageFilter pageFilter)
|
{
|
||||||
{
|
return WitPaged(null, pageFilter);
|
||||||
return WitPaged(null, pageFilter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 排序分页查询数据
|
||||||
/// 排序分页查询数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("OrderPaged")]
|
||||||
[HttpPost, Route("OrderPaged")]
|
public PagedActionResult<T_LG_OPRATE> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
||||||
public PagedActionResult<T_LG_OPRATE> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
{
|
||||||
{
|
return WitOrderPaged(null, pageFilter);
|
||||||
return WitOrderPaged(null, pageFilter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 根据主键删除数据
|
||||||
/// 根据主键删除数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="id">主键ID</param>
|
||||||
/// <param name="id">主键ID</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpGet, Route("Delete")]
|
||||||
[HttpGet, Route("Delete")]
|
public JsonActionResult<bool> Delete(string id)
|
||||||
public JsonActionResult<bool> Delete(string id)
|
{
|
||||||
{
|
return WitRealDelete(id);
|
||||||
return WitRealDelete(id);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 更新或新增数据
|
||||||
/// 更新或新增数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="entity">对象实体</param>
|
||||||
/// <param name="entity">对象实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Update")]
|
||||||
[HttpPost, Route("Update")]
|
public JsonActionResult<bool> Update([FromBody]T_LG_OPRATE entity)
|
||||||
public JsonActionResult<bool> Update([FromBody]T_LG_OPRATE entity)
|
{
|
||||||
{
|
return WitUpdate(entity);
|
||||||
return WitUpdate(entity);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 批量更新
|
||||||
/// 批量更新
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="entity">对象实体</param>
|
||||||
/// <param name="entity">对象实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("BatchUpdate")]
|
||||||
[HttpPost, Route("BatchUpdate")]
|
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_LG_OPRATE> entity)
|
||||||
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_LG_OPRATE> entity)
|
{
|
||||||
{
|
return WitBantchUpdate(entity?.Data);
|
||||||
return WitBantchUpdate(entity?.Data);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 批量删除数据
|
||||||
/// 批量删除数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
||||||
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpGet, Route("BatchDelete")]
|
||||||
[HttpGet, Route("BatchDelete")]
|
public JsonActionResult<bool> BatchDelete(string ids)
|
||||||
public JsonActionResult<bool> BatchDelete(string ids)
|
{
|
||||||
{
|
return WitRealBatchDelete(ids);
|
||||||
return WitRealBatchDelete(ids);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 获得单条实体数据
|
||||||
/// 获得单条实体数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Get")]
|
||||||
[HttpPost, Route("Get")]
|
public JsonActionResult<T_LG_OPRATE> Get([FromBody] KeywordFilter filter)
|
||||||
public JsonActionResult<T_LG_OPRATE> Get([FromBody] KeywordFilter filter)
|
{
|
||||||
{
|
return WitEntity(null, filter);
|
||||||
return WitEntity(null, filter);
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
#endregion
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5109"
|
"applicationUrl": "http://localhost:5109"
|
||||||
|
|||||||
@ -1,370 +1,356 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// T4模板文件:基础接口类
|
||||||
|
// 此代码由T4模板自动生成
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
using APT.Infrastructure.Core;
|
||||||
//------------------------------------------------------------------------------
|
using Microsoft.AspNetCore.Mvc;
|
||||||
// T4模板文件:基础接口类
|
using System.Collections.Generic;
|
||||||
// 此代码由T4模板自动生成
|
using APT.Utility;
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
using APT.Infrastructure.Api;
|
||||||
//------------------------------------------------------------------------------
|
using APT.BaseData.Domain.ApiModel.PF;
|
||||||
using APT.Infrastructure.Core;
|
namespace APT.NW.WebApi.Controllers.Api
|
||||||
using Microsoft.AspNetCore.Mvc;
|
{
|
||||||
using System.Collections.Generic;
|
|
||||||
using APT.Utility;
|
|
||||||
using APT.Infrastructure.Api;
|
|
||||||
using APT.BaseData.Domain.ApiModel.PF;
|
|
||||||
namespace APT.NW.WebApi.Controllers.Api
|
|
||||||
{
|
|
||||||
using APT.BaseData.Domain.Entities.NW;
|
using APT.BaseData.Domain.Entities.NW;
|
||||||
|
#region Enterprise-子企业表
|
||||||
#region Enterprise-子企业表
|
/// <summary>
|
||||||
/// <summary>
|
/// 子企业表
|
||||||
/// 子企业表
|
/// </summary>
|
||||||
/// </summary>
|
[Route("api/NW/Enterprise")]
|
||||||
[Route("api/NW/Enterprise")]
|
public partial class EnterpriseController : AuthorizeTreeApiController<T_NW_ENTERPRISE>
|
||||||
public partial class EnterpriseController : AuthorizeTreeApiController<T_NW_ENTERPRISE>
|
{
|
||||||
{
|
/// <summary>
|
||||||
/// <summary>
|
/// 查询所有数据
|
||||||
/// 查询所有数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Entities")]
|
||||||
[HttpPost, Route("Entities")]
|
public JsonActionResult<IEnumerable<T_NW_ENTERPRISE>> Entities([FromBody]KeywordFilter filter)
|
||||||
public JsonActionResult<IEnumerable<T_NW_ENTERPRISE>> Entities([FromBody]KeywordFilter filter)
|
{
|
||||||
{
|
return WitEntities(null, filter);
|
||||||
return WitEntities(null, filter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 排序查询所有数据
|
||||||
/// 排序查询所有数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
|
||||||
|
[HttpPost, Route("OrderEntities")]
|
||||||
[HttpPost, Route("OrderEntities")]
|
public JsonActionResult<IEnumerable<T_NW_ENTERPRISE>> OrderEntities([FromBody]KeywordFilter filter)
|
||||||
public JsonActionResult<IEnumerable<T_NW_ENTERPRISE>> OrderEntities([FromBody]KeywordFilter filter)
|
{
|
||||||
{
|
return WitOrderEntities(null, filter);
|
||||||
return WitOrderEntities(null, filter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 分页查询数据
|
||||||
/// 分页查询数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Paged")]
|
||||||
[HttpPost, Route("Paged")]
|
public PagedActionResult<T_NW_ENTERPRISE> Paged([FromBody]KeywordPageFilter pageFilter)
|
||||||
public PagedActionResult<T_NW_ENTERPRISE> Paged([FromBody]KeywordPageFilter pageFilter)
|
{
|
||||||
{
|
return WitPaged(null, pageFilter);
|
||||||
return WitPaged(null, pageFilter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 排序分页查询数据
|
||||||
/// 排序分页查询数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("OrderPaged")]
|
||||||
[HttpPost, Route("OrderPaged")]
|
public PagedActionResult<T_NW_ENTERPRISE> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
||||||
public PagedActionResult<T_NW_ENTERPRISE> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
{
|
||||||
{
|
return WitOrderPaged(null, pageFilter);
|
||||||
return WitOrderPaged(null, pageFilter);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 根据主键删除数据
|
||||||
/// 根据主键删除数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="id">主键ID</param>
|
||||||
/// <param name="id">主键ID</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpGet, Route("Delete")]
|
||||||
[HttpGet, Route("Delete")]
|
public JsonActionResult<bool> Delete(string id)
|
||||||
public JsonActionResult<bool> Delete(string id)
|
{
|
||||||
{
|
return WitRealDelete(id);
|
||||||
return WitRealDelete(id);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 更新或新增数据
|
||||||
/// 更新或新增数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="entity">对象实体</param>
|
||||||
/// <param name="entity">对象实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Update")]
|
||||||
[HttpPost, Route("Update")]
|
public JsonActionResult<bool> Update([FromBody]T_NW_ENTERPRISE entity)
|
||||||
public JsonActionResult<bool> Update([FromBody]T_NW_ENTERPRISE entity)
|
{
|
||||||
{
|
return WitUpdate(entity);
|
||||||
return WitUpdate(entity);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 批量更新
|
||||||
/// 批量更新
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="entity">对象实体</param>
|
||||||
/// <param name="entity">对象实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("BatchUpdate")]
|
||||||
[HttpPost, Route("BatchUpdate")]
|
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ENTERPRISE> entity)
|
||||||
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ENTERPRISE> entity)
|
{
|
||||||
{
|
return WitBantchUpdate(entity?.Data);
|
||||||
return WitBantchUpdate(entity?.Data);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 批量删除数据
|
||||||
/// 批量删除数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
||||||
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpGet, Route("BatchDelete")]
|
||||||
[HttpGet, Route("BatchDelete")]
|
public JsonActionResult<bool> BatchDelete(string ids)
|
||||||
public JsonActionResult<bool> BatchDelete(string ids)
|
{
|
||||||
{
|
return WitRealBatchDelete(ids);
|
||||||
return WitRealBatchDelete(ids);
|
}
|
||||||
}
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 获得单条实体数据
|
||||||
/// 获得单条实体数据
|
/// </summary>
|
||||||
/// </summary>
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <param name="filter">过滤实体</param>
|
/// <returns></returns>
|
||||||
/// <returns></returns>
|
[HttpPost, Route("Get")]
|
||||||
[HttpPost, Route("Get")]
|
public JsonActionResult<T_NW_ENTERPRISE> Get([FromBody] KeywordFilter filter)
|
||||||
public JsonActionResult<T_NW_ENTERPRISE> Get([FromBody] KeywordFilter filter)
|
{
|
||||||
{
|
return WitEntity(null, filter);
|
||||||
return WitEntity(null, filter);
|
}
|
||||||
}
|
/// <summary>
|
||||||
|
/// 获得树形实体数据
|
||||||
/// <summary>
|
/// </summary>
|
||||||
/// 获得树形实体数据
|
/// <param name="filter"></param>
|
||||||
/// </summary>
|
/// <returns></returns>
|
||||||
/// <param name="filter"></param>
|
[HttpPost, Route("TreeData")]
|
||||||
/// <returns></returns>
|
public JsonActionResult<IEnumerable<TreeNode<T_NW_ENTERPRISE>>> TreeData([FromBody] KeywordFilter filter)
|
||||||
[HttpPost, Route("TreeData")]
|
{
|
||||||
public JsonActionResult<IEnumerable<TreeNode<T_NW_ENTERPRISE>>> TreeData([FromBody] KeywordFilter filter)
|
return WitTreeOrderEntities(null, filter);
|
||||||
{
|
}
|
||||||
return WitTreeOrderEntities(null, filter);
|
|
||||||
}
|
}
|
||||||
|
#endregion
|
||||||
|
#region RoleDataPerm-子企业数据权限表
|
||||||
}
|
/// <summary>
|
||||||
#endregion
|
/// 子企业数据权限表
|
||||||
|
/// </summary>
|
||||||
#region RoleDataPerm-子企业数据权限表
|
[Route("api/NW/RoleDataPerm")]
|
||||||
/// <summary>
|
public partial class RoleDataPermController : AuthorizeApiController<T_NW_ROLE_DATA_PERM>
|
||||||
/// 子企业数据权限表
|
{
|
||||||
/// </summary>
|
/// <summary>
|
||||||
[Route("api/NW/RoleDataPerm")]
|
/// 查询所有数据
|
||||||
public partial class RoleDataPermController : AuthorizeApiController<T_NW_ROLE_DATA_PERM>
|
/// </summary>
|
||||||
{
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 查询所有数据
|
[HttpPost, Route("Entities")]
|
||||||
/// </summary>
|
public JsonActionResult<IEnumerable<T_NW_ROLE_DATA_PERM>> Entities([FromBody]KeywordFilter filter)
|
||||||
/// <param name="filter">过滤实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitEntities(null, filter);
|
||||||
[HttpPost, Route("Entities")]
|
}
|
||||||
public JsonActionResult<IEnumerable<T_NW_ROLE_DATA_PERM>> Entities([FromBody]KeywordFilter filter)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitEntities(null, filter);
|
/// 排序查询所有数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 排序查询所有数据
|
|
||||||
/// </summary>
|
[HttpPost, Route("OrderEntities")]
|
||||||
/// <param name="filter">过滤实体</param>
|
public JsonActionResult<IEnumerable<T_NW_ROLE_DATA_PERM>> OrderEntities([FromBody]KeywordFilter filter)
|
||||||
/// <returns></returns>
|
{
|
||||||
|
return WitOrderEntities(null, filter);
|
||||||
[HttpPost, Route("OrderEntities")]
|
}
|
||||||
public JsonActionResult<IEnumerable<T_NW_ROLE_DATA_PERM>> OrderEntities([FromBody]KeywordFilter filter)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitOrderEntities(null, filter);
|
/// 分页查询数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 分页查询数据
|
[HttpPost, Route("Paged")]
|
||||||
/// </summary>
|
public PagedActionResult<T_NW_ROLE_DATA_PERM> Paged([FromBody]KeywordPageFilter pageFilter)
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitPaged(null, pageFilter);
|
||||||
[HttpPost, Route("Paged")]
|
}
|
||||||
public PagedActionResult<T_NW_ROLE_DATA_PERM> Paged([FromBody]KeywordPageFilter pageFilter)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitPaged(null, pageFilter);
|
/// 排序分页查询数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 排序分页查询数据
|
[HttpPost, Route("OrderPaged")]
|
||||||
/// </summary>
|
public PagedActionResult<T_NW_ROLE_DATA_PERM> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitOrderPaged(null, pageFilter);
|
||||||
[HttpPost, Route("OrderPaged")]
|
}
|
||||||
public PagedActionResult<T_NW_ROLE_DATA_PERM> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitOrderPaged(null, pageFilter);
|
/// 根据主键删除数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="id">主键ID</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 根据主键删除数据
|
[HttpGet, Route("Delete")]
|
||||||
/// </summary>
|
public JsonActionResult<bool> Delete(string id)
|
||||||
/// <param name="id">主键ID</param>
|
{
|
||||||
/// <returns></returns>
|
return WitRealDelete(id);
|
||||||
[HttpGet, Route("Delete")]
|
}
|
||||||
public JsonActionResult<bool> Delete(string id)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitRealDelete(id);
|
/// 更新或新增数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="entity">对象实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 更新或新增数据
|
[HttpPost, Route("Update")]
|
||||||
/// </summary>
|
public JsonActionResult<bool> Update([FromBody]T_NW_ROLE_DATA_PERM entity)
|
||||||
/// <param name="entity">对象实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitUpdate(entity);
|
||||||
[HttpPost, Route("Update")]
|
}
|
||||||
public JsonActionResult<bool> Update([FromBody]T_NW_ROLE_DATA_PERM entity)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitUpdate(entity);
|
/// 批量更新
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="entity">对象实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 批量更新
|
[HttpPost, Route("BatchUpdate")]
|
||||||
/// </summary>
|
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ROLE_DATA_PERM> entity)
|
||||||
/// <param name="entity">对象实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitBantchUpdate(entity?.Data);
|
||||||
[HttpPost, Route("BatchUpdate")]
|
}
|
||||||
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ROLE_DATA_PERM> entity)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitBantchUpdate(entity?.Data);
|
/// 批量删除数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 批量删除数据
|
[HttpGet, Route("BatchDelete")]
|
||||||
/// </summary>
|
public JsonActionResult<bool> BatchDelete(string ids)
|
||||||
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
{
|
||||||
/// <returns></returns>
|
return WitRealBatchDelete(ids);
|
||||||
[HttpGet, Route("BatchDelete")]
|
}
|
||||||
public JsonActionResult<bool> BatchDelete(string ids)
|
|
||||||
{
|
/// <summary>
|
||||||
return WitRealBatchDelete(ids);
|
/// 获得单条实体数据
|
||||||
}
|
/// </summary>
|
||||||
|
/// <param name="filter">过滤实体</param>
|
||||||
/// <summary>
|
/// <returns></returns>
|
||||||
/// 获得单条实体数据
|
[HttpPost, Route("Get")]
|
||||||
/// </summary>
|
public JsonActionResult<T_NW_ROLE_DATA_PERM> Get([FromBody] KeywordFilter filter)
|
||||||
/// <param name="filter">过滤实体</param>
|
{
|
||||||
/// <returns></returns>
|
return WitEntity(null, filter);
|
||||||
[HttpPost, Route("Get")]
|
}
|
||||||
public JsonActionResult<T_NW_ROLE_DATA_PERM> Get([FromBody] KeywordFilter filter)
|
|
||||||
{
|
}
|
||||||
return WitEntity(null, filter);
|
#endregion
|
||||||
}
|
#region RoleMenu-子企业权限表
|
||||||
|
/// <summary>
|
||||||
|
/// 子企业权限表
|
||||||
}
|
/// </summary>
|
||||||
#endregion
|
[Route("api/NW/RoleMenu")]
|
||||||
|
public partial class RoleMenuController : AuthorizeApiController<T_NW_ROLE_MENU>
|
||||||
#region RoleMenu-子企业权限表
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 子企业权限表
|
/// 查询所有数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Route("api/NW/RoleMenu")]
|
/// <param name="filter">过滤实体</param>
|
||||||
public partial class RoleMenuController : AuthorizeApiController<T_NW_ROLE_MENU>
|
/// <returns></returns>
|
||||||
{
|
[HttpPost, Route("Entities")]
|
||||||
/// <summary>
|
public JsonActionResult<IEnumerable<T_NW_ROLE_MENU>> Entities([FromBody]KeywordFilter filter)
|
||||||
/// 查询所有数据
|
{
|
||||||
/// </summary>
|
return WitEntities(null, filter);
|
||||||
/// <param name="filter">过滤实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("Entities")]
|
/// <summary>
|
||||||
public JsonActionResult<IEnumerable<T_NW_ROLE_MENU>> Entities([FromBody]KeywordFilter filter)
|
/// 排序查询所有数据
|
||||||
{
|
/// </summary>
|
||||||
return WitEntities(null, filter);
|
/// <param name="filter">过滤实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
|
||||||
/// <summary>
|
[HttpPost, Route("OrderEntities")]
|
||||||
/// 排序查询所有数据
|
public JsonActionResult<IEnumerable<T_NW_ROLE_MENU>> OrderEntities([FromBody]KeywordFilter filter)
|
||||||
/// </summary>
|
{
|
||||||
/// <param name="filter">过滤实体</param>
|
return WitOrderEntities(null, filter);
|
||||||
/// <returns></returns>
|
}
|
||||||
|
|
||||||
[HttpPost, Route("OrderEntities")]
|
/// <summary>
|
||||||
public JsonActionResult<IEnumerable<T_NW_ROLE_MENU>> OrderEntities([FromBody]KeywordFilter filter)
|
/// 分页查询数据
|
||||||
{
|
/// </summary>
|
||||||
return WitOrderEntities(null, filter);
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpPost, Route("Paged")]
|
||||||
/// <summary>
|
public PagedActionResult<T_NW_ROLE_MENU> Paged([FromBody]KeywordPageFilter pageFilter)
|
||||||
/// 分页查询数据
|
{
|
||||||
/// </summary>
|
return WitPaged(null, pageFilter);
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("Paged")]
|
/// <summary>
|
||||||
public PagedActionResult<T_NW_ROLE_MENU> Paged([FromBody]KeywordPageFilter pageFilter)
|
/// 排序分页查询数据
|
||||||
{
|
/// </summary>
|
||||||
return WitPaged(null, pageFilter);
|
/// <param name="pageFilter">分页过滤实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpPost, Route("OrderPaged")]
|
||||||
/// <summary>
|
public PagedActionResult<T_NW_ROLE_MENU> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
||||||
/// 排序分页查询数据
|
{
|
||||||
/// </summary>
|
return WitOrderPaged(null, pageFilter);
|
||||||
/// <param name="pageFilter">分页过滤实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("OrderPaged")]
|
/// <summary>
|
||||||
public PagedActionResult<T_NW_ROLE_MENU> OrderPaged([FromBody]KeywordPageFilter pageFilter)
|
/// 根据主键删除数据
|
||||||
{
|
/// </summary>
|
||||||
return WitOrderPaged(null, pageFilter);
|
/// <param name="id">主键ID</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpGet, Route("Delete")]
|
||||||
/// <summary>
|
public JsonActionResult<bool> Delete(string id)
|
||||||
/// 根据主键删除数据
|
{
|
||||||
/// </summary>
|
return WitRealDelete(id);
|
||||||
/// <param name="id">主键ID</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpGet, Route("Delete")]
|
/// <summary>
|
||||||
public JsonActionResult<bool> Delete(string id)
|
/// 更新或新增数据
|
||||||
{
|
/// </summary>
|
||||||
return WitRealDelete(id);
|
/// <param name="entity">对象实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpPost, Route("Update")]
|
||||||
/// <summary>
|
public JsonActionResult<bool> Update([FromBody]T_NW_ROLE_MENU entity)
|
||||||
/// 更新或新增数据
|
{
|
||||||
/// </summary>
|
return WitUpdate(entity);
|
||||||
/// <param name="entity">对象实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("Update")]
|
/// <summary>
|
||||||
public JsonActionResult<bool> Update([FromBody]T_NW_ROLE_MENU entity)
|
/// 批量更新
|
||||||
{
|
/// </summary>
|
||||||
return WitUpdate(entity);
|
/// <param name="entity">对象实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpPost, Route("BatchUpdate")]
|
||||||
/// <summary>
|
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ROLE_MENU> entity)
|
||||||
/// 批量更新
|
{
|
||||||
/// </summary>
|
return WitBantchUpdate(entity?.Data);
|
||||||
/// <param name="entity">对象实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("BatchUpdate")]
|
/// <summary>
|
||||||
public JsonActionResult<bool> BatchUpdate([FromBody] BatchUpdateModel<T_NW_ROLE_MENU> entity)
|
/// 批量删除数据
|
||||||
{
|
/// </summary>
|
||||||
return WitBantchUpdate(entity?.Data);
|
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpGet, Route("BatchDelete")]
|
||||||
/// <summary>
|
public JsonActionResult<bool> BatchDelete(string ids)
|
||||||
/// 批量删除数据
|
{
|
||||||
/// </summary>
|
return WitRealBatchDelete(ids);
|
||||||
/// <param name="ids">id字符串(id用逗号分隔)</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpGet, Route("BatchDelete")]
|
/// <summary>
|
||||||
public JsonActionResult<bool> BatchDelete(string ids)
|
/// 获得单条实体数据
|
||||||
{
|
/// </summary>
|
||||||
return WitRealBatchDelete(ids);
|
/// <param name="filter">过滤实体</param>
|
||||||
}
|
/// <returns></returns>
|
||||||
|
[HttpPost, Route("Get")]
|
||||||
/// <summary>
|
public JsonActionResult<T_NW_ROLE_MENU> Get([FromBody] KeywordFilter filter)
|
||||||
/// 获得单条实体数据
|
{
|
||||||
/// </summary>
|
return WitEntity(null, filter);
|
||||||
/// <param name="filter">过滤实体</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost, Route("Get")]
|
}
|
||||||
public JsonActionResult<T_NW_ROLE_MENU> Get([FromBody] KeywordFilter filter)
|
#endregion
|
||||||
{
|
}
|
||||||
return WitEntity(null, filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5111"
|
"applicationUrl": "http://localhost:5111"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5116"
|
"applicationUrl": "http://localhost:5116"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5112"
|
"applicationUrl": "http://localhost:5112"
|
||||||
|
|||||||
@ -297,8 +297,8 @@ namespace APT.SC.WebApi.Controllers.Api.BI
|
|||||||
DateTime now = DateTime.Now;
|
DateTime now = DateTime.Now;
|
||||||
BaseFilter userfilter = new BaseFilter(filter.GetOrgId());
|
BaseFilter userfilter = new BaseFilter(filter.GetOrgId());
|
||||||
userfilter.SelectField = new string[] { "PHONE" };
|
userfilter.SelectField = new string[] { "PHONE" };
|
||||||
var allUsers = GetEntities<T_FM_USER>(t => t.ENABLE_STATUS == 0, userfilter);
|
var allUsers = GetEntities<T_FM_USER>(t => t.ENABLE_STATUS == 0 && t.ISGETMSG && t.PHONE != null && t.PHONE.Length == 11, userfilter);
|
||||||
var approveUsers = GetEntities<T_FM_USER>(t => t.Nav_Department.DEPARTMENT_TYPE != 2 && t.ENABLE_STATUS == 0, new BaseFilter(filter.GetOrgId()));
|
var approveUsers = GetEntities<T_FM_USER>(t => t.Nav_Department.DEPARTMENT_TYPE != 2 && t.ENABLE_STATUS == 0 && t.ISGETMSG && t.PHONE != null && t.PHONE.Length == 11, new BaseFilter(filter.GetOrgId()));
|
||||||
var userIds = approveUsers.Select(t => t.ID);
|
var userIds = approveUsers.Select(t => t.ID);
|
||||||
List<T_FM_NOTIFICATION_TASK> sendSMSs = null;
|
List<T_FM_NOTIFICATION_TASK> sendSMSs = null;
|
||||||
if (now.Hour >= 8 && now.Hour < 24)
|
if (now.Hour >= 8 && now.Hour < 24)
|
||||||
|
|||||||
@ -1,13 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -21,5 +15,4 @@ using APT.Infrastructure.Api;
|
|||||||
using APT.BaseData.Domain.ApiModel.PF;
|
using APT.BaseData.Domain.ApiModel.PF;
|
||||||
namespace APT.PP.WebApi.Controllers.Api
|
namespace APT.PP.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"applicationUrl": "http://localhost:5118",
|
"applicationUrl": "http://localhost:5118",
|
||||||
"nativeDebugging": false
|
"nativeDebugging": false
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": true,
|
"nativeDebugging": true,
|
||||||
"applicationUrl": "http://localhost:5179"
|
"applicationUrl": "http://localhost:5179"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"applicationUrl": "http://localhost:5180",
|
"applicationUrl": "http://localhost:5180",
|
||||||
"nativeDebugging": false
|
"nativeDebugging": false
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "api/values",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Pdev"
|
"ASPNETCORE_ENVIRONMENT": "Test"
|
||||||
},
|
},
|
||||||
"nativeDebugging": false,
|
"nativeDebugging": false,
|
||||||
"applicationUrl": "http://localhost:5177"
|
"applicationUrl": "http://localhost:5177"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user