BaseFactory.cs 417 Bytes
using FreeSql.DataAnnotations;
using HHECS.DataContract;
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; }

        public string FactoryName { get; set; }
    }
}