37 lines
		
	
	
		
			824 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			824 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using SqlSugar;
 | 
						|
 | 
						|
namespace DM_Weight.Models
 | 
						|
{
 | 
						|
    [SugarTable("destory_detail")]
 | 
						|
    public class DestoryDetail
 | 
						|
    {
 | 
						|
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
 | 
						|
        public int ID { get; set; }
 | 
						|
 | 
						|
 | 
						|
        [SugarColumn(ColumnName = "operatorid")]
 | 
						|
        public int? Operatorid { get; set; }
 | 
						|
 | 
						|
 | 
						|
        [SugarColumn(ColumnName = "reviewerid")]
 | 
						|
        public int? Reviewerid { get; set; }
 | 
						|
 | 
						|
 | 
						|
        [SugarColumn(ColumnName = "recordId")]
 | 
						|
        public int RecordId { get; set; }
 | 
						|
 | 
						|
 | 
						|
        [SugarColumn(ColumnName = "orderId")]
 | 
						|
        public int OrderId { get; set; }
 | 
						|
 | 
						|
        [SugarColumn(ColumnName = "machine_id")]
 | 
						|
        public string MachineId { get; set; }
 | 
						|
            
 | 
						|
    }
 | 
						|
}
 |