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 ProductInspectionTemplateGrp : System.ICloneable { /// /// /// public ProductInspectionTemplateGrp() { } /// /// /// /// public ProductInspectionTemplateGrp(ProductInspectionTemplateGrp rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ProductType = rhs.ProductType; this.UseStatus = rhs.UseStatus; this.Name = rhs.Name; this.SortCode = rhs.SortCode; } /// /// /// /// public void Reset(ProductInspectionTemplateGrp rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ProductType = rhs.ProductType; 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 ProductType { get; set; } /// /// 使用状态 /// public ProductInspectionContentGrp.eUseStatus UseStatus { get { return _useStatus; } set { _useStatus = value; } } private ProductInspectionContentGrp.eUseStatus _useStatus = ProductInspectionContentGrp.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 ProductInspectionTemplateGrp Clone() { return (ProductInspectionTemplateGrp)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }