using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Imports { /// /// 默认值属性类 /// public class DefaultValueProperty { /// /// 实体的属性名称 /// public string EntityProp { get; set; } /// /// 默认值 /// public object DefaultValue { get; set; } } }