Shuxia Ning
2025-01-08 0a1bf56909464e938a68c29b26ab88ff51380fad
Service/HStation.Service.Assets.Core/01-entity/09-Manufacturer/AssetsManufacturer.cs
@@ -1,14 +1,13 @@
using System.ComponentModel.DataAnnotations;
using Yw.Entity;
using Yw.Entity;
namespace HStation.Entity
{
    /// <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 +15,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 +28,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 +42,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>