Project.cs 624 Bytes
using FreeSql.DataAnnotations;

namespace HHECS.DAQShared.Models
{
    [Table(Name = "daq_project")]
    public class Project : BaseEntity<Guid>
    {
        public string Code { get; set; } = null!;

        public string Name { get; set; } = null!;

        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? CreateTime { get; set; }

        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? UpdateTime { get; set; }


        /// <summary>
        /// 备注
        /// </summary>
        public string Remark { get; set; } = null!;

    }
}