初始化项目
This commit is contained in:
24
APIserver/Models/ModelGoods/BehindPast.cs
Normal file
24
APIserver/Models/ModelGoods/BehindPast.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class BehindPast
|
||||
{
|
||||
|
||||
public string OutBoxCode { get; set; }
|
||||
|
||||
public string ShippingCode { get; set; }
|
||||
|
||||
public string Pwd { get; set; }
|
||||
|
||||
public string MO { get; set; }
|
||||
public string Loader { get; set; }
|
||||
public int sqlid { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
39
APIserver/Models/ModelGoods/TBL_4_26_TestLog.cs
Normal file
39
APIserver/Models/ModelGoods/TBL_4_26_TestLog.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using static System.Runtime.CompilerServices.RuntimeHelpers;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class TBL_4_26_TestLog : ICloneable
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int UserID { get; set; }
|
||||
public int ServiceID { get; set; }
|
||||
public string AppName { get; set; }
|
||||
public string TestPlan { get; set; }
|
||||
public string DUT_SN { get; set; }
|
||||
public DateTime StartTime { get; set; }
|
||||
public double UsedTime { get; set; }
|
||||
public int TestResult { get; set; }
|
||||
public string ErrCode { get; set; }
|
||||
public string FailSteps { get; set; }
|
||||
public int ProductionLineID { get; set; }
|
||||
public int OrderID { get; set; }
|
||||
public string FailMsg { get; set; }
|
||||
public string ShippingCode { get; set; }
|
||||
public string ShippingDateTime { get; set; }
|
||||
public string ProjectID { get; set; }
|
||||
public string Amount { get; set; }
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public TBL_4_26_TestLog Clones()
|
||||
{
|
||||
return (TBL_4_26_TestLog)this.Clone();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class TBL_UTS_Manage_UserAuth_Operation
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int UserID { get; set; }
|
||||
public int DatabaseID { get; set; }
|
||||
public string DatabaseName { get; set; }
|
||||
public string FullAccess { get; set; }
|
||||
public string ReadWriteAccess { get; set; }
|
||||
public string ReadOnlyAccess { get; set; }
|
||||
public string ReadProject { get; set; }
|
||||
public string ManagerAccess { get; set; }
|
||||
}
|
||||
}
|
||||
30
APIserver/Models/ModelGoods/jsonapi.cs
Normal file
30
APIserver/Models/ModelGoods/jsonapi.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class jsonapi
|
||||
{
|
||||
public string ShippingCode { get; set; }
|
||||
public string OutBoxCode { get; set;}
|
||||
public List<ColorBarPair> CCodeBCodeList { get; set;}
|
||||
|
||||
public string Message { get; set; }
|
||||
public bool Status { get; set; }
|
||||
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
public string Operator { get; set; }
|
||||
public DateTime ShippingDateTime { get; set; }
|
||||
public string ProjectName { get; set; }
|
||||
}
|
||||
public class ColorBarPair
|
||||
{
|
||||
|
||||
public string ColorBox { get; set; }
|
||||
public string BarCode { get; set; }
|
||||
}
|
||||
}
|
||||
33
APIserver/Models/ModelGoods/uts_bindhistoryinfo_log.cs
Normal file
33
APIserver/Models/ModelGoods/uts_bindhistoryinfo_log.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class uts_bindhistoryinfo_log : ICloneable
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int importinfoID { get; set; }
|
||||
public DateTime operateTime { get; set; }
|
||||
public int operateType { get; set; }
|
||||
public string OutBoxCode { get; set; }
|
||||
public string Barcode { get; set; }
|
||||
public string ColorBox_BarCode { get; set; }
|
||||
public string Remark { get; set; }
|
||||
public string ShippingCode { get; set; }
|
||||
public int Result { get; set; }
|
||||
public int ProjectID { get; set; }
|
||||
public string ShippingOperator { get; set; }
|
||||
public string ProjectName { get; set; }
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_bindhistoryinfo_log Clones()
|
||||
{
|
||||
return (uts_bindhistoryinfo_log)this.Clone();
|
||||
}
|
||||
}
|
||||
}
|
||||
34
APIserver/Models/ModelGoods/uts_importinfo_log.cs
Normal file
34
APIserver/Models/ModelGoods/uts_importinfo_log.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class uts_importinfo_log : ICloneable
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int ProjectID { get; set; }
|
||||
public string Dbname { get; set; }
|
||||
public string Operationtpye { get; set; }
|
||||
public DateTime ImportDateTime { get; set; }
|
||||
public string PartData { get; set; }
|
||||
public int Result { get; set; }
|
||||
public string ReturnResult { get; set; }
|
||||
public string Ip { get; set; }
|
||||
public string Address { get; set; }
|
||||
public float Runtime { get; set; }
|
||||
public string ShippingOperator { get; set; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_importinfo_log Clones()
|
||||
{
|
||||
return (uts_importinfo_log)this.Clone();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
75
APIserver/Models/ModelGoods/uts_johao_tbl_importinfo.cs
Normal file
75
APIserver/Models/ModelGoods/uts_johao_tbl_importinfo.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class uts_johao_tbl_importinfo : ICloneable
|
||||
{
|
||||
|
||||
public int ID { get; set; }
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
public string Barcode { get; set; }
|
||||
public DateTime ImportDateTime { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
|
||||
public string ColorBox_BarCode { get; set; }
|
||||
|
||||
public string OutBoxCode { get; set; }
|
||||
|
||||
public string MacCode { get; set; }
|
||||
public string UnitWeigth { get; set; }
|
||||
public string LABEL_PRINT_CNT { get; set; }
|
||||
public DateTime S1 { get; set; }
|
||||
public DateTime S2 { get; set; }
|
||||
|
||||
public DateTime S3 { get; set; }
|
||||
public DateTime S4 { get; set; }
|
||||
|
||||
public DateTime S5 { get; set; }
|
||||
public DateTime S6 { get; set; }
|
||||
public DateTime S7 { get; set; }
|
||||
public DateTime S8 { get; set; }
|
||||
public DateTime S9 { get; set; }
|
||||
public DateTime S10 { get; set; }
|
||||
public DateTime S11 { get; set; }
|
||||
public DateTime S12 { get; set; }
|
||||
public int Result1 { get; set; }
|
||||
public int Result2 { get; set; }
|
||||
public int Result3 { get; set; }
|
||||
public int Result4 { get; set; }
|
||||
public int Result5 { get; set; }
|
||||
public int Result6 { get; set; }
|
||||
public int Result7 { get; set; }
|
||||
public int Result8 { get; set; }
|
||||
public int Result9 { get; set; }
|
||||
public int Result10 { get; set; }
|
||||
public int Result11 { get; set; }
|
||||
public int Result12 { get; set; }
|
||||
public string MO { get; set; }
|
||||
public string ShippingCode { get; set; }
|
||||
public DateTime ShippingDateTime { get; set; }
|
||||
public string ShippingLoader { get; set; }
|
||||
public string F305_BLE_MAC { get; set; }
|
||||
public string F305_RF_ADD { get; set; }
|
||||
public string F305_DeviceName { get; set; }
|
||||
public string F305_DevicePSK { get; set; }
|
||||
|
||||
public string F305_4G_IMEI { get; set; }
|
||||
public string F305_4G_SIM_ID { get; set; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_johao_tbl_importinfo Clones()
|
||||
{
|
||||
return (uts_johao_tbl_importinfo)this.Clone();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
64
APIserver/Models/ModelGoods/uts_johao_tbl_shipping.cs
Normal file
64
APIserver/Models/ModelGoods/uts_johao_tbl_shipping.cs
Normal file
@@ -0,0 +1,64 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data.SqlTypes;
|
||||
using System.Linq;
|
||||
using System.Security.Principal;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class uts_johao_tbl_shipping : ICloneable
|
||||
{
|
||||
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
||||
public int ID { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(50)", IndexGroupNameList = new[] { "Uid_key" })]
|
||||
public string ShippingCode { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(50)")]
|
||||
public string Creator { get; set; }
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime CreateDateTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime StartDateTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime EndDateTime { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Loader { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
||||
public int Status { get; set; } = 0;
|
||||
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string ShippingType { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Destination { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Voucher { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Remark { get; set; }
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
//数量
|
||||
public int QTY { get; set; }
|
||||
public string MO { get; set; }
|
||||
public string Customer { get; set; }
|
||||
public int BindedColorBoxQTY { get; set; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_johao_tbl_shipping Clones()
|
||||
{
|
||||
return (uts_johao_tbl_shipping)this.Clone();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
82
APIserver/Models/ModelGoods/uts_zongqing_tbl_importinfo.cs
Normal file
82
APIserver/Models/ModelGoods/uts_zongqing_tbl_importinfo.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.SqlTypes;
|
||||
using System.Linq;
|
||||
using System.Security.Principal;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
#region 出货信息与外箱码表
|
||||
[Table("UTS_Zongqing_Tbl_Importinfo")]
|
||||
public class uts_zongqing_tbl_importinfo : ICloneable
|
||||
{
|
||||
|
||||
public int ID { get; set; }
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
public string Barcode { get; set; }
|
||||
public DateTime ImportDateTime { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
|
||||
public string ColorBox_BarCode { get; set; }
|
||||
|
||||
public string OutBoxCode { get; set; }
|
||||
|
||||
public string MacCode { get; set; }
|
||||
public string UnitWeigth { get; set; }
|
||||
public string LABEL_PRINT_CNT { get; set; }
|
||||
public DateTime S1 { get; set; }
|
||||
public DateTime S2 { get; set; }
|
||||
|
||||
public DateTime S3 { get; set; }
|
||||
public DateTime S4 { get; set; }
|
||||
|
||||
public DateTime S5 { get; set; }
|
||||
public DateTime S6 { get; set; }
|
||||
public DateTime S7 { get; set; }
|
||||
public DateTime S8 { get; set; }
|
||||
public DateTime S9 { get; set; }
|
||||
public DateTime S10 { get; set; }
|
||||
public DateTime S11 { get; set; }
|
||||
public DateTime S12 { get; set; }
|
||||
public int Result1 { get; set; }
|
||||
public int Result2 { get; set; }
|
||||
public int Result3 { get; set; }
|
||||
public int Result4 { get; set; }
|
||||
public int Result5 { get; set; }
|
||||
public int Result6 { get; set; }
|
||||
public int Result7 { get; set; }
|
||||
public int Result8 { get; set; }
|
||||
public int Result9 { get; set; }
|
||||
public int Result10 { get; set; }
|
||||
public int Result11 { get; set; }
|
||||
public int Result12 { get; set; }
|
||||
|
||||
public string Zima_UID { get; set; }
|
||||
|
||||
public string Zima_BLE_MAC { get; set; }
|
||||
public string ZIMA_BATT_SN { get; set; }
|
||||
public string ZIMA_TUYA_MAC { get; set; }
|
||||
public string MO { get; set; }
|
||||
public string ShippingCode { get; set; }
|
||||
|
||||
public DateTime ShippingDateTime { get; set; }
|
||||
//public string Amount { get; set; }
|
||||
public string ShippingLoader { get; set; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_zongqing_tbl_shipping Clones()
|
||||
{
|
||||
return (uts_zongqing_tbl_shipping)this.Clone();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
68
APIserver/Models/ModelGoods/uts_zongqing_tbl_shipping.cs
Normal file
68
APIserver/Models/ModelGoods/uts_zongqing_tbl_shipping.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using Models.ModelItems;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.SqlTypes;
|
||||
using System.Linq;
|
||||
using System.Security.Principal;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
#region 出货单表
|
||||
[Table("uts_zongqing_tbl_shipping")]
|
||||
public class uts_zongqing_tbl_shipping : ICloneable
|
||||
{
|
||||
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
||||
public int ID { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(50)", IndexGroupNameList = new[] { "Uid_key" })]
|
||||
public string ShippingCode { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(50)")]
|
||||
public string Creator { get; set; }
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime CreateDateTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime StartDateTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
|
||||
public DateTime EndDateTime { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Loader { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
||||
public int Status { get; set; } = 0;
|
||||
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string ShippingType { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Destination { get; set; }
|
||||
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Voucher { get; set; }
|
||||
[SugarColumn(ColumnDataType = "varchar(255)", IsNullable = true)]
|
||||
public string Remark { get; set; }
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
//数量
|
||||
public int QTY { get; set; }
|
||||
public string MO { get; set; }
|
||||
public string Customer { get; set; }
|
||||
public int BindedColorBoxQTY { get; set; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
return this.Clone();
|
||||
}
|
||||
public uts_zongqing_tbl_shipping Clones()
|
||||
{
|
||||
return (uts_zongqing_tbl_shipping)this.Clone();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user