using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// Get /// public partial class ProductInspectionContentGrp : System.ICloneable { /// /// /// public ProductInspectionContentGrp() { } /// /// /// /// public ProductInspectionContentGrp(ProductInspectionContentGrp rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ProductID = rhs.ProductID; this.UseStatus = rhs.UseStatus; this.Name = rhs.Name; this.SortCode = rhs.SortCode; } /// /// /// /// public void Reset(ProductInspectionContentGrp rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ProductID = rhs.ProductID; this.UseStatus = rhs.UseStatus; this.Name = rhs.Name; this.SortCode = rhs.SortCode; } /// /// 标识 /// public long ID { get; set; } /// /// CorpID /// public long CorpID { get; set; } /// /// 设备标识 /// public long ProductID { get; set; } /// /// 使用状态 /// public eUseStatus UseStatus { get { return _useStatus; } set { _useStatus = value; } } private eUseStatus _useStatus = eUseStatus.有效; /// /// 名称 /// public string Name { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 创建用户标识 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新用户标识 /// public long? UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// /// /// public ProductInspectionContentGrp Clone() { return (ProductInspectionContentGrp)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }