CodeGen.json 825 B

1234567891011121314151617
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. // 代码生成配置项-程序集名称集合
  4. "CodeGen": {
  5. "EntityAssemblyNames": [ "Admin.NET.Core", "Admin.NET.Application" ],
  6. "BaseEntityNames": [ "EntityTenant", "EntityBase", "EntityBaseId" ],
  7. "EntityBaseColumn": {
  8. "EntityTenant": [ "Id", "CreateTime", "UpdateTime", "CreateUserId", "UpdateUserId", "IsDelete", "TenantId" ],
  9. "EntityBase": [ "Id", "CreateTime", "UpdateTime", "CreateUserId", "UpdateUserId", "IsDelete" ],
  10. "EntityBaseId": [ "Id", "TenantId" ],
  11. "BaseId": [ "Id" ]
  12. },
  13. "FrontRootPath": "Web", // 前端文件根目录
  14. "BackendApplicationNamespace": "Admin.NET.Application" // 后端生成到的项目
  15. }
  16. }