using SqlSugar; namespace JNPF.Common.Contracts; /// /// 定义创建时间. /// public interface ICreatorTime { /// /// 获取或设置 创建时间. /// [SugarColumn(ColumnName = "F_CreatorTime", ColumnDescription = "创建时间")] DateTime? CreatorTime { get; set; } }