BaseFactory.cs 409 Bytes
using FreeSql.DataAnnotations;
using System.ComponentModel.DataAnnotations;

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

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

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