| | |
| | | /// <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() |
| | | { } |
| | |
| | | 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; |
| | | } |
| | |
| | | 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; |
| | | } |
| | |
| | | /// <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> |