初始化项目

This commit is contained in:
2025-11-20 13:11:05 +08:00
commit d5edc62c08
2412 changed files with 2201918 additions and 0 deletions

View 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; }
}
}