初始化项目
This commit is contained in:
45
AUTS.Domain/Application/TBL_RepairLog.cs
Normal file
45
AUTS.Domain/Application/TBL_RepairLog.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AUTS.Domain.Application
|
||||
{
|
||||
/**
|
||||
*维修日志表
|
||||
*/
|
||||
public class TBL_RepairLog
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int ProductID { get; set; }
|
||||
public int StationID { get; set; }
|
||||
public int OrderID { get; set; }
|
||||
public int TestLogID { get; set; }
|
||||
public string DUT_SN { get; set; }
|
||||
public string TestPlan { get; set; }
|
||||
public string FailSteps { get; set; }
|
||||
public string FailMsg { get; set; }
|
||||
public string ErrCode { get; set; }
|
||||
public DateTime RepairDate { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public int RepairType { get; set; }
|
||||
public int RepairReason { get; set; }
|
||||
public string RepairSource { get; set; }
|
||||
|
||||
public string ProductImg1 { get; set; }
|
||||
|
||||
public string ProductImg2 { get; set; }
|
||||
|
||||
public string ProductImg3 { get; set; }
|
||||
|
||||
|
||||
public string ProductImg4 { get; set; }
|
||||
|
||||
|
||||
public string DocuNumber { get; set; }
|
||||
public string RepairComment { get; set; }
|
||||
public int RepairResult { get; set; }
|
||||
public int Userid { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user