Update unit test

This commit is contained in:
sunkaixuan
2023-09-26 18:05:49 +08:00
parent b31d49180d
commit 5224b2e818
2 changed files with 123 additions and 1 deletions

View File

@@ -0,0 +1,73 @@
using SqlSugar;
using SqlSugar.DbConvert;
using System;
using System.Collections.Generic;
using System.Text;
namespace OrmTest
{
[SugarTable("aoi_recordsuper")]
public class T_TD_AOIRecord
{
[SugarColumn(IsPrimaryKey = true, SqlParameterDbType = typeof(DateTime19))]
public DateTime fcreatetime { get; set; }
/// <summary>
/// 产品唯一码
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string fsncode { get; set; }
/// <summary>
/// 机台号
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string fmachineno { get; set; }
/// <summary>
/// 批次号
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string lotno { get; set; }
/// <summary>
/// 单据号
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string billno { get; set; }
/// <summary>
/// 结果
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string fresult { get; set; }
/// <summary>
/// bin编号
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string dimbin { get; set; }
/// <summary>
/// 工站
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string workstation { get; set; }
/// <summary>
/// 料号
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string fproduct { get; set; }
/// <summary>
/// 机台时间
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string machinetime { get; set; }
/// <summary>
/// 唯一ID
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string id { get; set; }
/// <summary>
/// 测试状态
/// </summary>
[SugarColumn(SqlParameterDbType = typeof(CommonPropertyConvert))]
public string uploadtype { get; set; }
}
}