You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.5 KiB
C#
142 lines
4.5 KiB
C#
|
|
|
|
using Furion.DependencyInjection;
|
|
using Furion.DynamicApiController;
|
|
using Myshipping.Core.Entity;
|
|
using Mapster;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
/// <summary>
|
|
/// 代码生成详细配置服务
|
|
/// </summary>
|
|
[ApiDescriptionSettings(Name = "CodeGenConfig", Order = 100)]
|
|
public class CodeGenConfigService : ICodeGenConfigService, IDynamicApiController, ITransient
|
|
{
|
|
private readonly SqlSugarRepository<SysCodeGenConfig> _sysCodeGenConfigRep; // 代码生成详细配置仓储
|
|
|
|
public CodeGenConfigService(SqlSugarRepository<SysCodeGenConfig> sysCodeGenConfigRep)
|
|
{
|
|
_sysCodeGenConfigRep = sysCodeGenConfigRep;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 代码生成详细配置列表
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("/sysCodeGenerateConfig/list")]
|
|
public async Task<List<CodeGenConfig>> List([FromQuery] CodeGenConfig input)
|
|
{
|
|
return await _sysCodeGenConfigRep.Where(u => u.CodeGenId == input.CodeGenId && u.WhetherCommon != YesOrNot.Y.ToString())
|
|
.Select<CodeGenConfig>().ToListAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 增加
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[NonAction]
|
|
public async Task Add(CodeGenConfig input)
|
|
{
|
|
var codeGenConfig = input.Adapt<SysCodeGenConfig>();
|
|
await _sysCodeGenConfigRep.InsertAsync(codeGenConfig);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="codeGenId"></param>
|
|
/// <returns></returns>
|
|
[NonAction]
|
|
public async Task Delete(long codeGenId)
|
|
{
|
|
await _sysCodeGenConfigRep.DeleteAsync(u => u.CodeGenId == codeGenId);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 更新
|
|
/// </summary>
|
|
/// <param name="inputList"></param>
|
|
/// <returns></returns>
|
|
[HttpPost("/sysCodeGenerateConfig/edit")]
|
|
public async Task Update(List<CodeGenConfig> inputList)
|
|
{
|
|
if (inputList == null || inputList.Count < 1) return;
|
|
List<SysCodeGenConfig> list = inputList.Adapt<List<SysCodeGenConfig>>();
|
|
await _sysCodeGenConfigRep.UpdateAsync(list);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("/sysCodeGenerateConfig/detail")]
|
|
public async Task<SysCodeGenConfig> Detail(CodeGenConfig input)
|
|
{
|
|
return await _sysCodeGenConfigRep.FirstOrDefaultAsync(u => u.Id == input.Id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 批量增加
|
|
/// </summary>
|
|
/// <param name="tableColumnOuputList"></param>
|
|
/// <param name="codeGenerate"></param>
|
|
[NonAction]
|
|
public void AddList(List<TableColumnOuput> tableColumnOuputList, SysCodeGen codeGenerate)
|
|
{
|
|
if (tableColumnOuputList == null) return;
|
|
|
|
var codeGenConfigs = new List<SysCodeGenConfig>();
|
|
|
|
foreach (var tableColumn in tableColumnOuputList)
|
|
{
|
|
var codeGenConfig = new SysCodeGenConfig();
|
|
|
|
var YesOrNo = YesOrNot.Y.ToString();
|
|
if (Convert.ToBoolean(tableColumn.ColumnKey))
|
|
{
|
|
YesOrNo = YesOrNot.N.ToString();
|
|
}
|
|
|
|
if (CodeGenUtil.IsCommonColumn(tableColumn.ColumnName))
|
|
{
|
|
codeGenConfig.WhetherCommon = YesOrNot.Y.ToString();
|
|
YesOrNo = YesOrNot.N.ToString();
|
|
}
|
|
else
|
|
{
|
|
codeGenConfig.WhetherCommon = YesOrNot.N.ToString();
|
|
}
|
|
|
|
codeGenConfig.CodeGenId = codeGenerate.Id;
|
|
codeGenConfig.ColumnName = tableColumn.ColumnName;
|
|
codeGenConfig.ColumnComment = tableColumn.ColumnComment;
|
|
codeGenConfig.NetType = CodeGenUtil.ConvertDataType(tableColumn.DataType);
|
|
codeGenConfig.WhetherRetract = YesOrNot.N.ToString();
|
|
|
|
codeGenConfig.WhetherRequired = YesOrNot.N.ToString();
|
|
codeGenConfig.QueryWhether = YesOrNo;
|
|
codeGenConfig.WhetherAddUpdate = YesOrNo;
|
|
codeGenConfig.WhetherTable = YesOrNo;
|
|
|
|
codeGenConfig.ColumnKey = tableColumn.ColumnKey;
|
|
|
|
codeGenConfig.DataType = tableColumn.DataType;
|
|
codeGenConfig.EffectType = CodeGenUtil.DataTypeToEff(codeGenConfig.NetType);
|
|
codeGenConfig.QueryType = "=="; // QueryTypeEnum.eq.ToString();
|
|
codeGenConfigs.Add(codeGenConfig);
|
|
}
|
|
_sysCodeGenConfigRep.InsertAsync(codeGenConfigs);
|
|
}
|
|
}
|