You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
578 B
C#
27 lines
578 B
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace djy.Model.AFR
|
|
{
|
|
public class AFRBaseModel
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(IsPrimary = true)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后修改时间
|
|
/// </summary>
|
|
[Column(CanInsert = false)]
|
|
public DateTime? LastUpdate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(CanUpdate = false)]
|
|
public DateTime? CreateTime { get; set; }
|
|
}
|
|
}
|