YD_SmartSports.Api/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs
2025-06-06 16:00:39 +08:00

17 lines
451 B
C#

using VOL.Entity.MappingConfiguration;
using VOL.Entity.DomainModels;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace VOL.Entity.MappingConfiguration
{
public class Sys_WorkFlowTableMapConfig : EntityMappingConfiguration<Sys_WorkFlowTable>
{
public override void Map(EntityTypeBuilder<Sys_WorkFlowTable>
builderTable)
{
//b.Property(x => x.StorageName).HasMaxLength(45);
}
}
}