17 lines
448 B
C#
17 lines
448 B
C#
using VOL.Entity.MappingConfiguration;
|
|
using VOL.Entity.DomainModels;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace VOL.Entity.MappingConfiguration
|
|
{
|
|
public class Sys_WorkFlowStepMapConfig : EntityMappingConfiguration<Sys_WorkFlowStep>
|
|
{
|
|
public override void Map(EntityTypeBuilder<Sys_WorkFlowStep>
|
|
builderTable)
|
|
{
|
|
//b.Property(x => x.StorageName).HasMaxLength(45);
|
|
}
|
|
}
|
|
}
|
|
|