Project.cs
647 Bytes
using FreeSql.DataAnnotations;
namespace HHECS.DAQHandle.Models
{
[Table(Name = "daq_project")]
public class Project
{
[Column(IsPrimary = true)]
public int Id { get; set; }
public string Name { get; set; }
public string Code { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}