style: 修改codegen命名
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Yi.Framework.CodeGen.Domain.Shared.Enums
|
||||
{
|
||||
public enum FieldTypeEnum
|
||||
{
|
||||
[Display(Name = "string", Description = "String")]
|
||||
String,
|
||||
|
||||
[Display(Name = "int", Description = "Int32")]
|
||||
Int,
|
||||
|
||||
[Display(Name = "long", Description = "Int64")]
|
||||
Long,
|
||||
|
||||
[Display(Name = "bool", Description = "Boolean")]
|
||||
Bool,
|
||||
|
||||
[Display(Name = "decimal", Description = "Decimal")]
|
||||
Decimal,
|
||||
|
||||
[Display(Name = "DateTime", Description = "DateTime")]
|
||||
DateTime,
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="..\..\..\common.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="8.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,11 @@
|
||||
using Volo.Abp.Domain;
|
||||
using Volo.Abp.Modularity;
|
||||
|
||||
namespace Yi.Framework.CodeGen.Domain.Shared
|
||||
{
|
||||
[DependsOn(typeof(AbpDddDomainSharedModule))]
|
||||
public class YiFrameworkCodeGenDomainSharedModule : AbpModule
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user