You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
| using Estsh.Core.Base;
 | |
| using System.ComponentModel;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| 
 | |
| namespace Estsh.Core.Models
 | |
| {
 | |
|     /// <summary>
 | |
|     /// ,数据实体对象
 | |
|     /// </summary>
 | |
|     [Table("g_workorder_detail")]
 | |
|     [Serializable]
 | |
|     public class GWorkorderDetail : BaseEntity
 | |
|     {
 | |
|         [Column("ruid")]
 | |
|         [DisplayName(" ")]
 | |
|         public int Ruid { get; set; }
 | |
| 
 | |
|         [Column("seq")]
 | |
|         [DisplayName(" ")]
 | |
|         public int? Seq { get; set; }
 | |
| 
 | |
|         [Column("workorder")]
 | |
|         [DisplayName("工单号码")]
 | |
|         public string Workorder { get; set; }
 | |
| 
 | |
|         [Column("workorder_id")]
 | |
|         [DisplayName(" ")]
 | |
|         public int WorkorderId { get; set; }
 | |
| 
 | |
|         [Column("part_id")]
 | |
|         [DisplayName(" ")]
 | |
|         public int PartId { get; set; }
 | |
| 
 | |
|         [Column("type")]
 | |
|         [DisplayName(" ")]
 | |
|         public string Type { get; set; }
 | |
| 
 | |
|         [Column("status")]
 | |
|         [DisplayName(" ")]
 | |
|         public int? Status { get; set; }
 | |
| 
 | |
|         [Column("emergency_status")]
 | |
|         [DisplayName(" ")]
 | |
|         public int? EmergencyStatus { get; set; }
 | |
| 
 | |
|         #region 扩展字段
 | |
|         [NotMapped]
 | |
|         [Column("a")]
 | |
|         [DisplayName(" ")]
 | |
|         public int? A { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("modelNo")]
 | |
|         [DisplayName(" ")]
 | |
|         public string ModelNo { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("part_no")]
 | |
|         [DisplayName(" ")]
 | |
|         public string PartNo { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("part_spec")]
 | |
|         [DisplayName(" ")]
 | |
|         public string PartSpec { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("cust_pdline_desc")]
 | |
|         [DisplayName(" ")]
 | |
|         public string CustPdlineDesc { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("serial_number")]
 | |
|         [DisplayName(" ")]
 | |
|         public string SerialNumber { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("car_no")]
 | |
|         [DisplayName(" ")]
 | |
|         public string CarNo { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("cust_part_no")]
 | |
|         [DisplayName(" ")]
 | |
|         public string CustPartNo { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("batch_number")]
 | |
|         [DisplayName(" ")]
 | |
|         public string BatchNumber { get; set; }
 | |
| 
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("prod_type")]
 | |
|         [DisplayName(" ")]
 | |
|         public string ProdType { get; set; }
 | |
| 
 | |
|         [NotMapped]
 | |
|         [Column("work_flag")]
 | |
|         [DisplayName(" ")]
 | |
|         public string WorkFlag { get; set; }
 | |
|         #endregion
 | |
| 
 | |
|     }
 | |
| }
 |