// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。 // // 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。 // // 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任! namespace Admin.NET.Core.Service; /// /// 自定义模板引擎 /// public class CustomViewEngine : ViewEngineModel { /// /// 库定位器 /// public string ConfigId { get; set; } = SqlSugarConst.MainConfigId; public string AuthorName { get; set; } public string BusName { get; set; } public string NameSpace { get; set; } public string ClassName { get; set; } public string LowerClassName { get; set; } public string ProjectLastName { get; set; } public string PagePath { get; set; } = "main"; public string PrintType { get; set; } public string PrintName { get; set; } public bool HasLikeQuery { get; set; } public bool HasJoinTable { get; set; } public bool HasEnumField { get; set; } public bool HasDictField { get; set; } public bool HasConstField { get; set; } public bool HasSetStatus => TableField.Any(IsStatus); public List TableField { get; set; } public List ImportFieldList { get; set; } public List UploadFieldList { get; set; } public List QueryWhetherList { get; set; } public List ApiTreeFieldList { get; set; } public List DropdownFieldList { get; set; } public List AddUpdateFieldList { get; set; } public List PrimaryKeyFieldList { get; set; } public List TableUniqueConfigList { get; set; } public List IgnoreUpdateFieldList => TableField.Where(u => u.WhetherAddUpdate == "N" && u.ColumnKey != "True" && u.WhetherCommon != "Y").ToList(); /// /// 格式化主键查询条件 /// 例: PrimaryKeysFormat(" || ", "u.{0} == input.{0}") /// 单主键返回 u.Id == input.Id /// 组合主键返回 u.Id == input.Id || u.FkId == input.FkId /// /// 分隔符 /// 模板字符串 /// 字段首字母小写 /// public string PrimaryKeysFormat(string separator, string format, bool lowerFirstLetter = false) => string.Join(separator, PrimaryKeyFieldList.Select(u => string.Format(format, lowerFirstLetter ? u.LowerPropertyName : u.PropertyName))); /// /// 注入的服务 /// /// public Dictionary InjectServiceMap { get { var injectMap = new Dictionary(); if (UploadFieldList.Count > 0) injectMap.Add(nameof(SysFileService), ToLowerFirstLetter(nameof(SysFileService))); if (DropdownFieldList.Count > 0 || ImportFieldList.Count > 0) injectMap.Add(nameof(ISqlSugarClient), ToLowerFirstLetter(nameof(ISqlSugarClient).TrimStart('I'))); if (ImportFieldList.Any(c => c.EffectType == "DictSelector")) injectMap.Add(nameof(SysDictTypeService), ToLowerFirstLetter(nameof(SysDictTypeService))); return injectMap; } } /// /// 服务构造参数 /// public string InjectServiceArgs => InjectServiceMap.Count > 0 ? ", " + string.Join(", ", InjectServiceMap.Select(kv => $"{kv.Key} {kv.Value}")) : ""; /// /// 判断字段是否为状态字段 /// /// /// public bool IsStatus(CodeGenConfig column) => column.PropertyName == nameof(SysUser.Status) && column.NetType == nameof(StatusEnum); /// /// 获取首字母小写字符串 /// /// /// public string ToLowerFirstLetter(string text) => string.IsNullOrWhiteSpace(text) ? text : text[..1].ToLower() + text[1..]; /// /// 将基本字段类型转为可空类型 /// /// /// public string GetNullableNetType(string netType) => Regex.IsMatch(netType, "(.*?Enum|bool|char|int|long|double|float|decimal)[?]?") ? netType.TrimEnd('?') + "?" : netType; /// /// 获取前端表格列定义的属性 /// /// /// public string GetElTableColumnCustomProperty(CodeGenConfig column) { var content = $"prop='{column.LowerPropertyName}' label='{column.ColumnComment}'"; if (IsStatus(column)) content += $" v-auth=\"'{LowerClassName}:setStatus'\""; if (column.WhetherSortable == "Y") content += " sortable='custom'"; return content; } /// /// 设置默认值 /// /// public string GetAddDefaultValue() { var content = ""; var status = TableField.FirstOrDefault(IsStatus); var orderNo = TableField.FirstOrDefault(c => c.NetType.TrimEnd('?') == "int" && c.PropertyName == nameof(SysUser.OrderNo)); if (status != null) content += $"{status.LowerPropertyName}: {(int)StatusEnum.Enable},"; if (orderNo != null) content += $"{orderNo.LowerPropertyName}: 100,"; return content; } }