Bootstrap

数据库AOL标准的WHO字段

我们系统切换到这个标准了:

        /// <summary>
        /// Desc:创建人
        /// Default:
        /// Nullable:True
        /// </summary>
        [SugarColumn(IsNullable = true)][Browsable(false)] public int? CREATED_BY { get; set; }

        /// <summary>
        /// Desc:创建时间
        /// Default:
        /// Nullable:True
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDataType = "timestamptz")][Browsable(false)] public DateTime? CREATION_DATE { get; set; }

        /// <summary>
        /// Desc:更新者
        /// Default:
        /// Nullable:True
        /// </summary>
        [SugarColumn(IsNullable = true)][Browsable(false)] public int? LAST_UPDATED_BY { get; set; }

        /// <summary>
        /// Desc:更新时间
        /// Default:
        /// Nullable:True
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDataType = "timestamptz")][Browsable(false)] public DateTime? LAST_UPDATE_DATE { get; set; }

        /// <summary>
        /// Desc:数据版本
        /// Default:
        /// Nullable:True
        /// </summary>
        [SugarColumn(IsNullable = true)][Browsable(false)] public int? OBJECT_VERSION_NUMBER { get; set; }

;