duheng
2024-11-19 ca5f300a7cef85d22b5e0f9d59d117c49f9909b3
Service/HStation.Service.Assets.Core/01-entity/09-Manufacturer/AssetsManufacturer.cs
@@ -6,9 +6,9 @@
    /// <summary>
    /// 厂商
    /// </summary>
    [SysType("assets_Manufacturer")]
    [SugarTable("assets_Manufacturer")]
    public class AssetsManufacturer : BaseEntity, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
    [SysType("assets_manufacturer")]
    [SugarTable("assets_manufacturer")]
    public class AssetsManufacturer : BaseEntity, IFlags, ITagName, ISorter, System.ICloneable
    {
        public AssetsManufacturer()
        { }
@@ -16,12 +16,12 @@
        public AssetsManufacturer(AssetsManufacturer rhs) : base(rhs)
        {
            this.Name = rhs.Name;
            this.SeriesID = rhs.SeriesID;
            this.Contacter = rhs.Contacter;
            this.Telephone = rhs.Telephone;
            this.Address = rhs.Address;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -29,13 +29,13 @@
        public void Reset(AssetsManufacturer rhs)
        {
            this.ID = rhs.ID;
            this.SeriesID = rhs.SeriesID;
            this.Name = rhs.Name;
            this.Contacter = rhs.Contacter;
            this.Telephone = rhs.Telephone;
            this.Address = rhs.Address;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
@@ -43,55 +43,46 @@
        /// <summary>
        /// 名称
        /// </summary>
        [Display(Name = "名称")]
        public string Name { get; set; }
        /// <summary>
        /// 系列ID
        /// </summary>
        public long SeriesID { get; set; }
        /// <summary>
        /// 联系人
        /// </summary>
        [Display(Name = "联系人")]
        public string Contacter { get; set; }
        /// <summary>
        /// 联系电话
        /// </summary>
        [Display(Name = "联系电话")]
        public string Telephone { get; set; }
        /// <summary>
        /// 地址
        /// </summary>
        [Display(Name = "地址")]
        public string Address { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        [Display(Name = "标签")]
        public string Flags { get; set; }
        /// <summary>
        /// 标签名称
        /// </summary>
        [Display(Name = "标签名称")]
        public string TagName { get; set; }
        /// <summary>
        /// 使用状态
        /// </summary>
        [Display(Name = "使用状态")]
        public int UseStatus { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        [Display(Name = "排序码")]
        public int SortCode { get; set; }
        /// <summary>
        /// 说明
        /// </summary>
        [Display(Name = "说明")]
        public string Description { get; set; }
        /// <summary>