BaseProject.cs 549 Bytes
using FreeSql.DataAnnotations;
using System.ComponentModel.DataAnnotations;

namespace HHECS.DAQShared.Models
{
    [Table(Name = "base_project", DisableSyncStructure = true)]
    public class BaseProject : BaseEntity<int>
    {
        [Key]
        public Guid Keys { get; set; }

        /// <summary>
        /// 项目编号
        /// </summary>
        public string ProjectCode { get; set; } = null!;

        /// <summary>
        /// 项目名称
        /// </summary>
        public string ProjectName { get; set; } = null!;
    }
}