176 changed files with 5465 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,25 @@ |
|||
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00 |
|||
# Visual Studio Version 17 |
|||
VisualStudioVersion = 17.6.33801.468 |
|||
MinimumVisualStudioVersion = 10.0.40219.1 |
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsApp1", "WinFormsApp1\WinFormsApp1.csproj", "{8DEDBE7C-5C38-47BD-AB01-A2D625C17885}" |
|||
EndProject |
|||
Global |
|||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
|||
Debug|Any CPU = Debug|Any CPU |
|||
Release|Any CPU = Release|Any CPU |
|||
EndGlobalSection |
|||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
|||
{8DEDBE7C-5C38-47BD-AB01-A2D625C17885}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|||
{8DEDBE7C-5C38-47BD-AB01-A2D625C17885}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|||
{8DEDBE7C-5C38-47BD-AB01-A2D625C17885}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|||
{8DEDBE7C-5C38-47BD-AB01-A2D625C17885}.Release|Any CPU.Build.0 = Release|Any CPU |
|||
EndGlobalSection |
|||
GlobalSection(SolutionProperties) = preSolution |
|||
HideSolutionNode = FALSE |
|||
EndGlobalSection |
|||
GlobalSection(ExtensibilityGlobals) = postSolution |
|||
SolutionGuid = {778CDFE2-47C4-44C1-AD96-9D7105B35017} |
|||
EndGlobalSection |
|||
EndGlobal |
@ -0,0 +1,82 @@ |
|||
namespace WinFormsApp1 |
|||
{ |
|||
partial class Form1 |
|||
{ |
|||
/// <summary>
|
|||
/// Required designer variable.
|
|||
/// </summary>
|
|||
private System.ComponentModel.IContainer components = null; |
|||
|
|||
/// <summary>
|
|||
/// Clean up any resources being used.
|
|||
/// </summary>
|
|||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
protected override void Dispose(bool disposing) |
|||
{ |
|||
if (disposing && (components != null)) |
|||
{ |
|||
components.Dispose(); |
|||
} |
|||
base.Dispose(disposing); |
|||
} |
|||
|
|||
#region Windows Form Designer generated code
|
|||
|
|||
/// <summary>
|
|||
/// Required method for Designer support - do not modify
|
|||
/// the contents of this method with the code editor.
|
|||
/// </summary>
|
|||
private void InitializeComponent() |
|||
{ |
|||
button1 = new Button(); |
|||
txt_constr = new TextBox(); |
|||
textBox1 = new TextBox(); |
|||
SuspendLayout(); |
|||
//
|
|||
// button1
|
|||
//
|
|||
button1.Location = new Point(197, 115); |
|||
button1.Name = "button1"; |
|||
button1.Size = new Size(461, 23); |
|||
button1.TabIndex = 0; |
|||
button1.Text = "button1"; |
|||
button1.UseVisualStyleBackColor = true; |
|||
button1.Click += button1_Click; |
|||
//
|
|||
// txt_constr
|
|||
//
|
|||
txt_constr.Location = new Point(197, 38); |
|||
txt_constr.Name = "txt_constr"; |
|||
txt_constr.Size = new Size(461, 23); |
|||
txt_constr.TabIndex = 1; |
|||
txt_constr.Text = "Server=dev.ccwin-in.com,13319;Database=Store_Main;uid=ccwin-in;pwd=Microsoft@2022;Packet Size=512;"; |
|||
//
|
|||
// textBox1
|
|||
//
|
|||
textBox1.Location = new Point(12, 144); |
|||
textBox1.Multiline = true; |
|||
textBox1.Name = "textBox1"; |
|||
textBox1.Size = new Size(776, 294); |
|||
textBox1.TabIndex = 2; |
|||
//
|
|||
// Form1
|
|||
//
|
|||
AutoScaleDimensions = new SizeF(7F, 17F); |
|||
AutoScaleMode = AutoScaleMode.Font; |
|||
ClientSize = new Size(800, 450); |
|||
Controls.Add(textBox1); |
|||
Controls.Add(txt_constr); |
|||
Controls.Add(button1); |
|||
Name = "Form1"; |
|||
Text = "Form1"; |
|||
ResumeLayout(false); |
|||
PerformLayout(); |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
private Button button1; |
|||
private TextBox txt_constr; |
|||
private TextBox textBox1; |
|||
} |
|||
} |
@ -0,0 +1,177 @@ |
|||
using System.Data; |
|||
using System.Data.SqlClient; |
|||
|
|||
namespace WinFormsApp1; |
|||
|
|||
public partial class Form1 : Form |
|||
{ |
|||
public Form1() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
|
|||
private void button1_Click(object sender, EventArgs e) |
|||
{ |
|||
var strPath = System.Environment.CurrentDirectory; |
|||
var outPath = strPath + "\\cs_file"; |
|||
Directory.CreateDirectory(outPath); |
|||
|
|||
var constr = txt_constr.Text.Trim(); //数据库链接字符串
|
|||
|
|||
var dataTable = GetDataTable("select * from sys.tables", constr); |
|||
|
|||
foreach (DataRow row in dataTable.Rows) |
|||
{ |
|||
var tbname = row["name"].ToString(); //要生成的表名
|
|||
var dt = GetDbTableInfo(tbname, constr); |
|||
var list = new List<string>(); |
|||
var context = ""; |
|||
|
|||
context += "using System\r\n"; |
|||
context += "using System.Collections.Generic\r\n"; |
|||
context += "using Volo.Abp.Domain.Entities.Auditing\r\n"; |
|||
context += $"public class {tbname} : AuditedAggregateRoot<Guid>\r\n"; |
|||
context += "{\r\n"; |
|||
for (var i = 0; i < dt.Rows.Count; i++) |
|||
{ |
|||
var Name = dt.Rows[i]["Name"].ToString(); |
|||
var Type = dt.Rows[i]["Type"].ToString(); |
|||
var IsNullable = dt.Rows[i]["IsNullable"].ToString(); |
|||
var IsIdentity = dt.Rows[i]["IsIdentity"].ToString(); |
|||
var Description = dt.Rows[i]["Description"].ToString(); |
|||
var IsKey = dt.Rows[i]["IsKey"].ToString(); |
|||
var type = DbTypeStr_To_CsharpType(Type); |
|||
|
|||
context += $@"public {type.Name} {Name} {{ get; set; }}" + "\r\n"; |
|||
} |
|||
context += "}\r\n"; |
|||
|
|||
var fileName = outPath +"\\"+ tbname + ".cs"; |
|||
WriteDataFile(fileName, context); |
|||
} |
|||
} |
|||
|
|||
private void WriteDataFile(string filepath, string text) |
|||
{ |
|||
// Note: You should handle potential IO errors in a try/catch block
|
|||
using (var fs = File.Create(filepath)) |
|||
{ |
|||
using (var sw = new StreamWriter(fs)) |
|||
{ |
|||
sw.WriteLine(text); |
|||
} |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 根据参数,获取数据表信息
|
|||
/// </summary>
|
|||
/// <param name="tabname"></param>
|
|||
public DataTable GetDbTableInfo(string tabname, string constr) |
|||
{ |
|||
var str = string.Format(@"select
|
|||
sys.columns.column_id as [ColumnId], |
|||
sys.columns.name as [Name], |
|||
sys.types.name as [Type], |
|||
sys.columns.is_nullable [IsNullable], |
|||
[IsIdentity]=CONVERT(BIT, (select count(*) from sys.identity_columns where sys.identity_columns.object_id = sys.columns.object_id and sys.columns.column_id = sys.identity_columns.column_id)), |
|||
(select value from sys.extended_properties where sys.extended_properties.major_id = sys.columns.object_id and sys.extended_properties.minor_id = sys.columns.column_id and name='MS_Description') as [Description], |
|||
[IsKey] =CONVERT(bit,(case when sys.columns.name in (select b.column_name |
|||
from information_schema.table_constraints a |
|||
inner join information_schema.constraint_column_usage b |
|||
on a.constraint_name = b.constraint_name |
|||
where a.constraint_type = 'PRIMARY KEY' and a.table_name = '{0}') then 1 else 0 end)) |
|||
from sys.columns, sys.views, sys.types where sys.columns.object_id = sys.views.object_id and sys.columns.system_type_id=sys.types.system_type_id and sys.views.name='{0}' and sys.types.name !='sysname' |
|||
union |
|||
select |
|||
sys.columns.column_id as [ColumnId], |
|||
sys.columns.name as [Name], |
|||
sys.types.name as [Type], |
|||
sys.columns.is_nullable [IsNullable], |
|||
[IsIdentity]=CONVERT(BIT, (select count(*) from sys.identity_columns where sys.identity_columns.object_id = sys.columns.object_id and sys.columns.column_id = sys.identity_columns.column_id)), |
|||
(select value from sys.extended_properties where sys.extended_properties.major_id = sys.columns.object_id and sys.extended_properties.minor_id = sys.columns.column_id and name='MS_Description') as [Description], |
|||
[IsKey] =CONVERT(bit,(case when sys.columns.name in (select b.column_name |
|||
from information_schema.table_constraints a |
|||
inner join information_schema.constraint_column_usage b |
|||
on a.constraint_name = b.constraint_name |
|||
where a.constraint_type = 'PRIMARY KEY' and a.table_name = '{0}') then 1 else 0 end)) |
|||
from sys.columns, sys.tables, sys.types where sys.columns.object_id = sys.tables.object_id and sys.columns.system_type_id=sys.types.system_type_id and sys.tables.name='{0}' and sys.types.name !='sysname' |
|||
order by sys.columns.column_id asc", tabname);
|
|||
|
|||
var dt = GetDataTable(str, constr); |
|||
return dt; |
|||
} |
|||
|
|||
public DataTable GetDataTable(string sql, string constr) |
|||
{ |
|||
var dt = new DataTable(); |
|||
|
|||
using (var connection = new SqlConnection(constr)) |
|||
{ |
|||
//定义执行SQL语句,可以为select查询,也可以为存储过程,我们要的只是返回的结果集.
|
|||
|
|||
//强大的SqlDataAdapter
|
|||
var adapter = new SqlDataAdapter(sql, connection); |
|||
|
|||
var ds = new DataSet(); |
|||
//Fill 方法会执行一系列操作 connection.open command.reader 等等
|
|||
//反正到最后就把 sql语句执行一遍,然后把结果集插入到 ds 里.
|
|||
adapter.Fill(ds); |
|||
|
|||
dt = ds.Tables[0]; |
|||
} |
|||
|
|||
return dt; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 类型转换枚举
|
|||
/// </summary>
|
|||
protected Dictionary<string, Type> DbTypeDic { get; } = new() |
|||
{ |
|||
{ "int", typeof(int) }, |
|||
{ "text", typeof(string) }, |
|||
{ "bigint", typeof(long) }, |
|||
{ "binary", typeof(byte[]) }, |
|||
{ "bit", typeof(bool) }, |
|||
{ "char", typeof(string) }, |
|||
{ "date", typeof(DateTime) }, |
|||
{ "datetime", typeof(DateTime) }, |
|||
{ "datetime2", typeof(DateTime) }, |
|||
{ "decimal", typeof(decimal) }, |
|||
{ "float", typeof(double) }, |
|||
{ "image", typeof(byte[]) }, |
|||
{ "money", typeof(decimal) }, |
|||
{ "nchar", typeof(string) }, |
|||
{ "ntext", typeof(string) }, |
|||
{ "numeric", typeof(decimal) }, |
|||
{ "nvarchar", typeof(string) }, |
|||
{ "real", typeof(float) }, |
|||
{ "smalldatetime", typeof(DateTime) }, |
|||
{ "smallint", typeof(short) }, |
|||
{ "smallmoney", typeof(decimal) }, |
|||
{ "timestamp", typeof(DateTime) }, |
|||
{ "tinyint", typeof(byte) }, |
|||
{ "varbinary", typeof(byte[]) }, |
|||
{ "varchar", typeof(string) }, |
|||
{ "variant", typeof(object) }, |
|||
{ "uniqueidentifier", typeof(Guid) } |
|||
}; |
|||
|
|||
/// <summary>
|
|||
/// 获取字段类型
|
|||
/// </summary>
|
|||
/// <param name="dbTypeStr"></param>
|
|||
/// <returns></returns>
|
|||
public virtual Type DbTypeStr_To_CsharpType(string dbTypeStr) |
|||
{ |
|||
var _dbTypeStr = dbTypeStr.ToLower(); |
|||
Type type = null; |
|||
if (DbTypeDic.ContainsKey(_dbTypeStr)) |
|||
type = DbTypeDic[_dbTypeStr]; |
|||
else |
|||
type = typeof(string); |
|||
|
|||
return type; |
|||
} |
|||
} |
@ -0,0 +1,120 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<root> |
|||
<!-- |
|||
Microsoft ResX Schema |
|||
|
|||
Version 2.0 |
|||
|
|||
The primary goals of this format is to allow a simple XML format |
|||
that is mostly human readable. The generation and parsing of the |
|||
various data types are done through the TypeConverter classes |
|||
associated with the data types. |
|||
|
|||
Example: |
|||
|
|||
... ado.net/XML headers & schema ... |
|||
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|||
<resheader name="version">2.0</resheader> |
|||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|||
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data> |
|||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|||
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|||
</data> |
|||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|||
<comment>This is a comment</comment> |
|||
</data> |
|||
|
|||
There are any number of "resheader" rows that contain simple |
|||
name/value pairs. |
|||
|
|||
Each data row contains a name, and value. The row also contains a |
|||
type or mimetype. Type corresponds to a .NET class that support |
|||
text/value conversion through the TypeConverter architecture. |
|||
Classes that don't support this are serialized and stored with the |
|||
mimetype set. |
|||
|
|||
The mimetype is used for serialized objects, and tells the |
|||
ResXResourceReader how to depersist the object. This is currently not |
|||
extensible. For a given mimetype the value must be set accordingly: |
|||
|
|||
Note - application/x-microsoft.net.object.binary.base64 is the format |
|||
that the ResXResourceWriter will generate, however the reader can |
|||
read any of the formats listed below. |
|||
|
|||
mimetype: application/x-microsoft.net.object.binary.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.soap.base64 |
|||
value : The object must be serialized with |
|||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|||
: and then encoded with base64 encoding. |
|||
|
|||
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|||
value : The object must be serialized into a byte array |
|||
: using a System.ComponentModel.TypeConverter |
|||
: and then encoded with base64 encoding. |
|||
--> |
|||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|||
<xsd:element name="root" msdata:IsDataSet="true"> |
|||
<xsd:complexType> |
|||
<xsd:choice maxOccurs="unbounded"> |
|||
<xsd:element name="metadata"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|||
<xsd:attribute name="type" type="xsd:string" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="assembly"> |
|||
<xsd:complexType> |
|||
<xsd:attribute name="alias" type="xsd:string" /> |
|||
<xsd:attribute name="name" type="xsd:string" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="data"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|||
<xsd:attribute ref="xml:space" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
<xsd:element name="resheader"> |
|||
<xsd:complexType> |
|||
<xsd:sequence> |
|||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|||
</xsd:sequence> |
|||
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:choice> |
|||
</xsd:complexType> |
|||
</xsd:element> |
|||
</xsd:schema> |
|||
<resheader name="resmimetype"> |
|||
<value>text/microsoft-resx</value> |
|||
</resheader> |
|||
<resheader name="version"> |
|||
<value>2.0</value> |
|||
</resheader> |
|||
<resheader name="reader"> |
|||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
<resheader name="writer"> |
|||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|||
</resheader> |
|||
</root> |
@ -0,0 +1,17 @@ |
|||
namespace WinFormsApp1 |
|||
{ |
|||
internal static class Program |
|||
{ |
|||
/// <summary>
|
|||
/// The main entry point for the application.
|
|||
/// </summary>
|
|||
[STAThread] |
|||
static void Main() |
|||
{ |
|||
// To customize application configuration such as set high DPI settings or default font,
|
|||
// see https://aka.ms/applicationconfiguration.
|
|||
ApplicationConfiguration.Initialize(); |
|||
Application.Run(new Form1()); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<PropertyGroup> |
|||
<OutputType>WinExe</OutputType> |
|||
<TargetFramework>net6.0-windows</TargetFramework> |
|||
<Nullable>enable</Nullable> |
|||
<UseWindowsForms>true</UseWindowsForms> |
|||
<ImplicitUsings>enable</ImplicitUsings> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup> |
|||
<Compile Update="Form1.cs"> |
|||
<SubType>Form</SubType> |
|||
</Compile> |
|||
</ItemGroup> |
|||
</Project> |
Binary file not shown.
@ -0,0 +1,164 @@ |
|||
{ |
|||
"runtimeTarget": { |
|||
"name": ".NETCoreApp,Version=v6.0", |
|||
"signature": "" |
|||
}, |
|||
"compilationOptions": {}, |
|||
"targets": { |
|||
".NETCoreApp,Version=v6.0": { |
|||
"WinFormsApp1/1.0.0": { |
|||
"dependencies": { |
|||
"System.Data.SqlClient": "4.8.5" |
|||
}, |
|||
"runtime": { |
|||
"WinFormsApp1.dll": {} |
|||
} |
|||
}, |
|||
"Microsoft.NETCore.Platforms/3.1.0": {}, |
|||
"Microsoft.Win32.Registry/4.7.0": { |
|||
"dependencies": { |
|||
"System.Security.AccessControl": "4.7.0", |
|||
"System.Security.Principal.Windows": "4.7.0" |
|||
} |
|||
}, |
|||
"runtime.native.System.Data.SqlClient.sni/4.7.0": { |
|||
"dependencies": { |
|||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", |
|||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", |
|||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" |
|||
} |
|||
}, |
|||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"runtimeTargets": { |
|||
"runtimes/win-arm64/native/sni.dll": { |
|||
"rid": "win-arm64", |
|||
"assetType": "native", |
|||
"fileVersion": "4.6.25512.1" |
|||
} |
|||
} |
|||
}, |
|||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"runtimeTargets": { |
|||
"runtimes/win-x64/native/sni.dll": { |
|||
"rid": "win-x64", |
|||
"assetType": "native", |
|||
"fileVersion": "4.6.25512.1" |
|||
} |
|||
} |
|||
}, |
|||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"runtimeTargets": { |
|||
"runtimes/win-x86/native/sni.dll": { |
|||
"rid": "win-x86", |
|||
"assetType": "native", |
|||
"fileVersion": "4.6.25512.1" |
|||
} |
|||
} |
|||
}, |
|||
"System.Data.SqlClient/4.8.5": { |
|||
"dependencies": { |
|||
"Microsoft.Win32.Registry": "4.7.0", |
|||
"System.Security.Principal.Windows": "4.7.0", |
|||
"runtime.native.System.Data.SqlClient.sni": "4.7.0" |
|||
}, |
|||
"runtime": { |
|||
"lib/netcoreapp2.1/System.Data.SqlClient.dll": { |
|||
"assemblyVersion": "4.6.1.5", |
|||
"fileVersion": "4.700.22.51706" |
|||
} |
|||
}, |
|||
"runtimeTargets": { |
|||
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { |
|||
"rid": "unix", |
|||
"assetType": "runtime", |
|||
"assemblyVersion": "4.6.1.5", |
|||
"fileVersion": "4.700.22.51706" |
|||
}, |
|||
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { |
|||
"rid": "win", |
|||
"assetType": "runtime", |
|||
"assemblyVersion": "4.6.1.5", |
|||
"fileVersion": "4.700.22.51706" |
|||
} |
|||
} |
|||
}, |
|||
"System.Security.AccessControl/4.7.0": { |
|||
"dependencies": { |
|||
"Microsoft.NETCore.Platforms": "3.1.0", |
|||
"System.Security.Principal.Windows": "4.7.0" |
|||
} |
|||
}, |
|||
"System.Security.Principal.Windows/4.7.0": {} |
|||
} |
|||
}, |
|||
"libraries": { |
|||
"WinFormsApp1/1.0.0": { |
|||
"type": "project", |
|||
"serviceable": false, |
|||
"sha512": "" |
|||
}, |
|||
"Microsoft.NETCore.Platforms/3.1.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", |
|||
"path": "microsoft.netcore.platforms/3.1.0", |
|||
"hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" |
|||
}, |
|||
"Microsoft.Win32.Registry/4.7.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", |
|||
"path": "microsoft.win32.registry/4.7.0", |
|||
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" |
|||
}, |
|||
"runtime.native.System.Data.SqlClient.sni/4.7.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", |
|||
"path": "runtime.native.system.data.sqlclient.sni/4.7.0", |
|||
"hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" |
|||
}, |
|||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", |
|||
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", |
|||
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" |
|||
}, |
|||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", |
|||
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", |
|||
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" |
|||
}, |
|||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", |
|||
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", |
|||
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" |
|||
}, |
|||
"System.Data.SqlClient/4.8.5": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==", |
|||
"path": "system.data.sqlclient/4.8.5", |
|||
"hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512" |
|||
}, |
|||
"System.Security.AccessControl/4.7.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", |
|||
"path": "system.security.accesscontrol/4.7.0", |
|||
"hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" |
|||
}, |
|||
"System.Security.Principal.Windows/4.7.0": { |
|||
"type": "package", |
|||
"serviceable": true, |
|||
"sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", |
|||
"path": "system.security.principal.windows/4.7.0", |
|||
"hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" |
|||
} |
|||
} |
|||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@ |
|||
{ |
|||
"runtimeOptions": { |
|||
"tfm": "net6.0", |
|||
"frameworks": [ |
|||
{ |
|||
"name": "Microsoft.NETCore.App", |
|||
"version": "6.0.0" |
|||
}, |
|||
{ |
|||
"name": "Microsoft.WindowsDesktop.App", |
|||
"version": "6.0.0" |
|||
} |
|||
] |
|||
} |
|||
} |
@ -0,0 +1,16 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class AbpAuditLogActions : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public Guid AuditLogId { get; set; } |
|||
public String ServiceName { get; set; } |
|||
public String MethodName { get; set; } |
|||
public String Parameters { get; set; } |
|||
public DateTime ExecutionTime { get; set; } |
|||
public Int32 ExecutionDuration { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class AbpAuditLogs : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ApplicationName { get; set; } |
|||
public Guid UserId { get; set; } |
|||
public String UserName { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String TenantName { get; set; } |
|||
public Guid ImpersonatorUserId { get; set; } |
|||
public Guid ImpersonatorTenantId { get; set; } |
|||
public DateTime ExecutionTime { get; set; } |
|||
public Int32 ExecutionDuration { get; set; } |
|||
public String ClientIpAddress { get; set; } |
|||
public String ClientName { get; set; } |
|||
public String ClientId { get; set; } |
|||
public String CorrelationId { get; set; } |
|||
public String BrowserInfo { get; set; } |
|||
public String HttpMethod { get; set; } |
|||
public String Url { get; set; } |
|||
public String Exceptions { get; set; } |
|||
public String Comments { get; set; } |
|||
public Int32 HttpStatusCode { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
} |
|||
|
@ -0,0 +1,12 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class AbpSettings : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Name { get; set; } |
|||
public String Value { get; set; } |
|||
public String ProviderName { get; set; } |
|||
public String ProviderKey { get; set; } |
|||
} |
|||
|
@ -0,0 +1,19 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class AppExportCustomUserSettings : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Guid ExportUserId { get; set; } |
|||
public String ExportUserName { get; set; } |
|||
public String ExportColumnName { get; set; } |
|||
public String ExportTableName { get; set; } |
|||
public Int32 CustomUserSetting { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
} |
|||
|
@ -0,0 +1,30 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreArriveNotice : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String AsnNumber { get; set; } |
|||
public String RpNumber { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String SupplierCode { get; set; } |
|||
public String SupplierName { get; set; } |
|||
public String TruckNumber { get; set; } |
|||
public String DockCode { get; set; } |
|||
public String TimeWindow { get; set; } |
|||
public DateTime ArriveTime { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,38 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreArriveNoticeDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String PoLine { get; set; } |
|||
public String SupplierPack_PackUom { get; set; } |
|||
public Decimal SupplierPack_PackQty { get; set; } |
|||
public Decimal ConvertRate { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String ItemEqLevel { get; set; } |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreContainerBindNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 BindType { get; set; } |
|||
public DateTime BindTime { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,32 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreContainerBindNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountAdjustNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String CountPlanNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String CountNoteNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,38 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountAdjustNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String CountLabel { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String InventoryQty_Uom { get; set; } |
|||
public Decimal InventoryQty_Qty { get; set; } |
|||
public Int32 Type { get; set; } |
|||
public String ReasonCode { get; set; } |
|||
public Decimal CountQty { get; set; } |
|||
public Decimal AdjustQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int32 Type { get; set; } |
|||
public String Description { get; set; } |
|||
public DateTime BeginTime { get; set; } |
|||
public DateTime EndTime { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String CountPlanNumber { get; set; } |
|||
public Int32 Stage { get; set; } |
|||
public Int32 Status { get; set; } |
|||
} |
|||
|
@ -0,0 +1,49 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String CountPlanNumber { get; set; } |
|||
public String CountLabel { get; set; } |
|||
public String InventoryQty_Uom { get; set; } |
|||
public Decimal InventoryQty_Qty { get; set; } |
|||
public Decimal FirstCount_Qty { get; set; } |
|||
public DateTime FirstCount_Time { get; set; } |
|||
public String FirstCount_Operator { get; set; } |
|||
public String FirstCount_Description { get; set; } |
|||
public Decimal RepeatCount_Qty { get; set; } |
|||
public DateTime RepeatCount_Time { get; set; } |
|||
public String RepeatCount_Operator { get; set; } |
|||
public String RepeatCount_Description { get; set; } |
|||
public Decimal AuditCount_Qty { get; set; } |
|||
public DateTime AuditCount_Time { get; set; } |
|||
public String AuditCount_Operator { get; set; } |
|||
public String AuditCount_Description { get; set; } |
|||
public Int32 Stage { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public Int32 DetailStatus { get; set; } |
|||
public Decimal FinalCountQty { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,28 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountPlan : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int32 Type { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public Int32 Stage { get; set; } |
|||
public String Description { get; set; } |
|||
public DateTime BeginTime { get; set; } |
|||
public DateTime EndTime { get; set; } |
|||
public Int32 CountMethod { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public DateTime PlanTime { get; set; } |
|||
} |
|||
|
@ -0,0 +1,48 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCountPlanDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String CountLabel { get; set; } |
|||
public String InventoryQty_Uom { get; set; } |
|||
public Decimal InventoryQty_Qty { get; set; } |
|||
public Decimal FirstCount_Qty { get; set; } |
|||
public DateTime FirstCount_Time { get; set; } |
|||
public String FirstCount_Operator { get; set; } |
|||
public String FirstCount_Description { get; set; } |
|||
public Decimal RepeatCount_Qty { get; set; } |
|||
public DateTime RepeatCount_Time { get; set; } |
|||
public String RepeatCount_Operator { get; set; } |
|||
public String RepeatCount_Description { get; set; } |
|||
public Decimal AuditCount_Qty { get; set; } |
|||
public DateTime AuditCount_Time { get; set; } |
|||
public String AuditCount_Operator { get; set; } |
|||
public String AuditCount_Description { get; set; } |
|||
public Decimal FinalCountQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public Int32 Stage { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 DetailStatus { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCustomerAsn : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String SoNumber { get; set; } |
|||
public String CustomerCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String Contacts_Name { get; set; } |
|||
public String Contacts_Phone { get; set; } |
|||
public String Contacts_Email { get; set; } |
|||
public String DockCode { get; set; } |
|||
public DateTime TimeWindow_BeginTime { get; set; } |
|||
public DateTime TimeWindow_EndTime { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCustomerAsnDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String SoNumber { get; set; } |
|||
public String SoLine { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
} |
|||
|
@ -0,0 +1,23 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCustomerReturnNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public DateTime ReturnTime { get; set; } |
|||
public String Customer { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,40 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreCustomerReturnNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String Customer { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
public String Carrier { get; set; } |
|||
public String CarrierShipmentRef { get; set; } |
|||
public String ModeOfTransport { get; set; } |
|||
public String ShipVia { get; set; } |
|||
public String VehicleID { get; set; } |
|||
public String SoNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,44 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime DeliverTime { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String SoLine { get; set; } |
|||
public String SoNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverPlan : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime PlanDate { get; set; } |
|||
public DateTime PlanTime { get; set; } |
|||
public String Customer { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
public String Carrier { get; set; } |
|||
public String CarrierShipmentRef { get; set; } |
|||
public String ModeOfTransport { get; set; } |
|||
public String ShipVia { get; set; } |
|||
public String VehicleID { get; set; } |
|||
public String SoNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,28 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverPlanDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String SoNumber { get; set; } |
|||
public String SoLine { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String Project { get; set; } |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverRequest : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String DeliverPlanNumber { get; set; } |
|||
public String Customer { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,28 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDeliverRequestDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
} |
|||
|
@ -0,0 +1,26 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreDocumentSetting : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Code { get; set; } |
|||
public String Name { get; set; } |
|||
public String Description { get; set; } |
|||
public String TransactionType { get; set; } |
|||
public String SubTransactionType { get; set; } |
|||
public String NumberPrefix { get; set; } |
|||
public String NumberFormat { get; set; } |
|||
public Int32 NumberSerialLength { get; set; } |
|||
public String NumberSeparator { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
} |
|||
|
@ -0,0 +1,23 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectAbnormalNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String InspectNumber { get; set; } |
|||
public String ReceiptNumber { get; set; } |
|||
public String SupplierCode { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,33 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectAbnormalNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String AbnormalType { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,10 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectAbnormalNoteDetailPhoto : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid PhotoID { get; set; } |
|||
public Guid InspectAbnormalNoteDetailId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String InspectNumber { get; set; } |
|||
public String ReceiptNumber { get; set; } |
|||
public String ArriveNoticeNumber { get; set; } |
|||
public String AsnNumber { get; set; } |
|||
public String RpNumber { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String SupplierCode { get; set; } |
|||
public Int32 NextAction { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,47 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String PoLine { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 InspectType { get; set; } |
|||
public Decimal SamplePercent { get; set; } |
|||
public String ReceiveQty_Uom { get; set; } |
|||
public Decimal ReceiveQty_Qty { get; set; } |
|||
public Decimal InspectQty { get; set; } |
|||
public Decimal GoodQty { get; set; } |
|||
public String FailedReason { get; set; } |
|||
public Decimal FailedQty { get; set; } |
|||
public Decimal CrackQty { get; set; } |
|||
public String InspectUser_Name { get; set; } |
|||
public String InspectUser_Phone { get; set; } |
|||
public String InspectUser_Email { get; set; } |
|||
public Decimal NotPassedQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,10 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNoteDetailPhoto : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid PhotoID { get; set; } |
|||
public Guid InspectNoteDetailId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
} |
|||
|
@ -0,0 +1,47 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNoteSummaryDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String PoLine { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 InspectType { get; set; } |
|||
public Decimal SamplePercent { get; set; } |
|||
public String ReceiveQty_Uom { get; set; } |
|||
public Decimal ReceiveQty_Qty { get; set; } |
|||
public Decimal InspectQty { get; set; } |
|||
public Decimal GoodQty { get; set; } |
|||
public String FailedReason { get; set; } |
|||
public Decimal FailedQty { get; set; } |
|||
public Decimal CrackQty { get; set; } |
|||
public String InspectUser_Name { get; set; } |
|||
public String InspectUser_Phone { get; set; } |
|||
public String InspectUser_Email { get; set; } |
|||
public Decimal NotPassedQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,26 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNotice : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ReceiptNumber { get; set; } |
|||
public String ArriveNoticeNumber { get; set; } |
|||
public String AsnNumber { get; set; } |
|||
public String RpNumber { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String SupplierCode { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,39 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNoticeDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String PoLine { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 InspectType { get; set; } |
|||
public Decimal SamplePercent { get; set; } |
|||
public String ReceiveQty_Uom { get; set; } |
|||
public Decimal ReceiveQty_Qty { get; set; } |
|||
public Decimal InspectQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,39 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInspectNoticeSummaryDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PoNumber { get; set; } |
|||
public String PoLine { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 InspectType { get; set; } |
|||
public Decimal SamplePercent { get; set; } |
|||
public String ReceiveQty_Uom { get; set; } |
|||
public Decimal ReceiveQty_Qty { get; set; } |
|||
public Decimal InspectQty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInventoryTransferNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String SupplierCode { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,41 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreInventoryTransferNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public String Reason { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,21 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreIsolationNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,40 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreIsolationNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreIssueNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String Workshop { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,46 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreIssueNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime IssueTime { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String WorkStation { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String FromRequestLocationCode { get; set; } |
|||
public String ToRequestLocationCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisDeliverNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String Customer { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
public Decimal ContainerQty { get; set; } |
|||
public Decimal ItemQty { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public DateTime DeliverTime { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public DateTime ArrivalTime { get; set; } |
|||
public String TotalPackCapacity { get; set; } |
|||
} |
|||
|
@ -0,0 +1,50 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisDeliverNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime DeliverTime { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
public String Position { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public String SeqNo { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String OnlineType { get; set; } |
|||
public String PackCapacity { get; set; } |
|||
public String Stage { get; set; } |
|||
public String UsedFor { get; set; } |
|||
} |
|||
|
@ -0,0 +1,32 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductReceiptNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int32 ReceiptType { get; set; } |
|||
public String SourceNumber { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ProductionPlanNumber { get; set; } |
|||
public String WorkShop { get; set; } |
|||
public String Shift { get; set; } |
|||
public DateTime CompleteTime { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public Decimal ContainerQty { get; set; } |
|||
public Decimal ItemQty { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String RawLocation { get; set; } |
|||
} |
|||
|
@ -0,0 +1,41 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductReceiptNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String RawLocation { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String BomVersion { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String Position { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String SeqNo { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,26 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductRecycleNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime RecycleTime { get; set; } |
|||
public String RawLocation { get; set; } |
|||
public String Shift { get; set; } |
|||
public String ProductionPlanNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String ProdLine { get; set; } |
|||
} |
|||
|
@ -0,0 +1,41 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductRecycleNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String RawLocation { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String BomVersion { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public String Position { get; set; } |
|||
public String SeqNo { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductReturnNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public DateTime ReturnTime { get; set; } |
|||
public String Customer { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,37 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductReturnNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Reason { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public String Position { get; set; } |
|||
public String SeqNo { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public String Lot { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,25 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductTransferNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,37 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreJisProductTransferNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Reason { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public String Position { get; set; } |
|||
public String SeqNo { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public String Lot { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreMaterialRequest : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String Workshop { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String PreparationPlanNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreMaterialRequestDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String WorkStation { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String RequestLocationCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOfflineSettlementNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ProductReceiptNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,34 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOfflineSettlementNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisDeliverNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String DeliverNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public Int32 Priority { get; set; } |
|||
public Int32 RetryTimes { get; set; } |
|||
public Int32 Status { get; set; } |
|||
} |
|||
|
@ -0,0 +1,43 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisDeliverNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String DeliverNumber { get; set; } |
|||
public String ProductionNumber { get; set; } |
|||
public String Rev { get; set; } |
|||
public String L7Part { get; set; } |
|||
public String SerialNumber { get; set; } |
|||
public String ItemName { get; set; } |
|||
public String Position { get; set; } |
|||
public Decimal Qty { get; set; } |
|||
public String SiteNickName { get; set; } |
|||
public String DeliverPeople { get; set; } |
|||
public DateTime DeliverDate { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Carrier { get; set; } |
|||
public String CarrierShipmentRef { get; set; } |
|||
public String Line { get; set; } |
|||
public String ModeOfTransport { get; set; } |
|||
public String ModelYear { get; set; } |
|||
public String Order { get; set; } |
|||
public String PONumber { get; set; } |
|||
public String ShipToOrDock { get; set; } |
|||
public String ShipVia { get; set; } |
|||
public String VehicleID { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisReplaceNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Number { get; set; } |
|||
public String ProjectCode { get; set; } |
|||
public String Position { get; set; } |
|||
public String L7Part { get; set; } |
|||
public String ItemName { get; set; } |
|||
public String SparesNumber { get; set; } |
|||
public String SparesLot { get; set; } |
|||
public String TargetNumber { get; set; } |
|||
public String TargetLot { get; set; } |
|||
public String Description { get; set; } |
|||
public String ReplacePeople { get; set; } |
|||
public DateTime ReplaceDate { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
} |
|||
|
@ -0,0 +1,21 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisUnplannedIssueNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String OuterUnplannedIssueNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,34 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisUnplannedIssueNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String OuterUnplannedIssueNumber { get; set; } |
|||
public String DocumentType { get; set; } |
|||
public String ProductionNumber { get; set; } |
|||
public String Rev { get; set; } |
|||
public String L7Part { get; set; } |
|||
public String BarCode { get; set; } |
|||
public String ItemName { get; set; } |
|||
public String Lot { get; set; } |
|||
public Decimal Qty { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String UnplannedIssuePeople { get; set; } |
|||
public String UnplannedIssuePeopleName { get; set; } |
|||
public DateTime UnplannedIssueDate { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,21 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisUnplannedReceiptNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String OuterUnplannedReceiptNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,34 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterJisUnplannedReceiptNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String OuterUnplannedReceiptNumber { get; set; } |
|||
public String DocumentType { get; set; } |
|||
public String ProductionNumber { get; set; } |
|||
public String Rev { get; set; } |
|||
public String L7Part { get; set; } |
|||
public String ItemName { get; set; } |
|||
public String Lot { get; set; } |
|||
public Decimal Qty { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String UnplannedReceiptPeople { get; set; } |
|||
public String UnplannedReceiptPeopleName { get; set; } |
|||
public DateTime UnplannedReceiptDate { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String BarCode { get; set; } |
|||
} |
|||
|
@ -0,0 +1,22 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterPillarDeliverNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String DeliverNumber { get; set; } |
|||
public DateTime DeliverDate { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,45 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOuterPillarDeliverNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String DeliverNumber { get; set; } |
|||
public DateTime DeliverDate { get; set; } |
|||
public String ShipToOrDock { get; set; } |
|||
public String ShipVia { get; set; } |
|||
public String ModeOfTransport { get; set; } |
|||
public String Carrier { get; set; } |
|||
public String CarrierShipmentRef { get; set; } |
|||
public String VehicleID { get; set; } |
|||
public String Order { get; set; } |
|||
public String Line { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOutgoingData : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int64 Number { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String DataType { get; set; } |
|||
public DateTime EffectiveDate { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String DataContent { get; set; } |
|||
public String DestinationSystem { get; set; } |
|||
public DateTime ReadTime { get; set; } |
|||
public String Reader { get; set; } |
|||
public String SourceSystem { get; set; } |
|||
public DateTime WriteTime { get; set; } |
|||
public String Writer { get; set; } |
|||
public Int32 ErrorCode { get; set; } |
|||
public String ErrorMessage { get; set; } |
|||
public Int32 RetryTimes { get; set; } |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreOutgoingDataHistory : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int64 Number { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String DataType { get; set; } |
|||
public DateTime EffectiveDate { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String DataContent { get; set; } |
|||
public String DestinationSystem { get; set; } |
|||
public DateTime ReadTime { get; set; } |
|||
public String Reader { get; set; } |
|||
public String SourceSystem { get; set; } |
|||
public DateTime WriteTime { get; set; } |
|||
public String Writer { get; set; } |
|||
public Int32 ErrorCode { get; set; } |
|||
public String ErrorMessage { get; set; } |
|||
public Int32 RetryTimes { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StorePillarDeliverNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String Customer { get; set; } |
|||
public String CustomerAddressCode { get; set; } |
|||
public String SoNumber { get; set; } |
|||
public String ShipVia { get; set; } |
|||
public String ModeOfTransport { get; set; } |
|||
public String Carrier { get; set; } |
|||
public String CarrierShipmentRef { get; set; } |
|||
public String VehicleID { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,44 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StorePillarDeliverNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime DeliverTime { get; set; } |
|||
public DateTime ExpiredTime { get; set; } |
|||
public String SoNumber { get; set; } |
|||
public String SoLine { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String FromPackingCode { get; set; } |
|||
public String ToPackingCode { get; set; } |
|||
public String FromContainerCode { get; set; } |
|||
public String ToContainerCode { get; set; } |
|||
public String FromLot { get; set; } |
|||
public String ToLot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public String FromLocationCode { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String FromWarehouseCode { get; set; } |
|||
public String ToWarehouseCode { get; set; } |
|||
public Int32 FromStatus { get; set; } |
|||
public Int32 ToStatus { get; set; } |
|||
} |
|||
|
@ -0,0 +1,28 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StorePreparationPlan : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ProductionPlanNumber { get; set; } |
|||
public String Workshop { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String Shift { get; set; } |
|||
public String Team { get; set; } |
|||
public DateTime PlanDate { get; set; } |
|||
public DateTime PlanTime { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StorePreparationPlanDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ToLocationCode { get; set; } |
|||
public String WorkStation { get; set; } |
|||
public Int32 LineStatus { get; set; } |
|||
public DateTime LatestTime { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
} |
|||
|
@ -0,0 +1,29 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductL7PartsNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String Program { get; set; } |
|||
public String Position { get; set; } |
|||
public String FATA { get; set; } |
|||
public String Configuration { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String ReceiptNumber { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public DateTime CreateDate { get; set; } |
|||
public Int32 State { get; set; } |
|||
} |
|||
|
@ -0,0 +1,32 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductL7PartsNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int32 RowID { get; set; } |
|||
public String ProductNo { get; set; } |
|||
public String Program { get; set; } |
|||
public String Position { get; set; } |
|||
public String FATA { get; set; } |
|||
public String Configuration { get; set; } |
|||
public String L7Part { get; set; } |
|||
public Int32 Qty { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public DateTime CreateDate { get; set; } |
|||
public Int32 State { get; set; } |
|||
public Boolean IsAutoBackFlush { get; set; } |
|||
} |
|||
|
@ -0,0 +1,20 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductReceiptLog : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,34 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductReceiptLogDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductReceiptNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public Int32 ReceiptType { get; set; } |
|||
public String SourceNumber { get; set; } |
|||
public String JobNumber { get; set; } |
|||
public String ProductionPlanNumber { get; set; } |
|||
public String Workshop { get; set; } |
|||
public String Shift { get; set; } |
|||
public DateTime CompleteTime { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,37 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductReceiptNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String RawLocation { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String BomVersion { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductRecycleNote : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public DateTime RecycleTime { get; set; } |
|||
public String Workshop { get; set; } |
|||
public String Shift { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
public String ProductionPlanNumber { get; set; } |
|||
} |
|||
|
@ -0,0 +1,37 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductRecycleNoteDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String RawLocation { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String BomVersion { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String PackingCode { get; set; } |
|||
public String ContainerCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String LocationCode { get; set; } |
|||
public String Qty_Uom { get; set; } |
|||
public Decimal Qty_Qty { get; set; } |
|||
public String StdPack_PackUom { get; set; } |
|||
public Decimal StdPack_PackQty { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductionPlan : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String Workshop { get; set; } |
|||
public String ProdLine { get; set; } |
|||
public String Shift { get; set; } |
|||
public String Team { get; set; } |
|||
public DateTime PlanDate { get; set; } |
|||
public DateTime PlanTime { get; set; } |
|||
public Int32 Status { get; set; } |
|||
public String ExtraProperties { get; set; } |
|||
public String ConcurrencyStamp { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Remark { get; set; } |
|||
public String Company { get; set; } |
|||
public String Worker { get; set; } |
|||
public String WarehouseCode { get; set; } |
|||
public String Number { get; set; } |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
using System |
|||
using System.Collections.Generic |
|||
using Volo.Abp.Domain.Entities.Auditing |
|||
public class StoreProductionPlanDetail : AuditedAggregateRoot<Guid> |
|||
{ |
|||
public Guid Id { get; set; } |
|||
public String PlanQty_Uom { get; set; } |
|||
public Decimal PlanQty_Qty { get; set; } |
|||
public Decimal GoodQty { get; set; } |
|||
public Decimal NoGoodQty { get; set; } |
|||
public String BomVersion { get; set; } |
|||
public Int32 LineStatus { get; set; } |
|||
public DateTime CreationTime { get; set; } |
|||
public Guid CreatorId { get; set; } |
|||
public DateTime LastModificationTime { get; set; } |
|||
public Guid LastModifierId { get; set; } |
|||
public Guid MasterID { get; set; } |
|||
public Guid TenantId { get; set; } |
|||
public String Number { get; set; } |
|||
public String Remark { get; set; } |
|||
public Guid Item_Id { get; set; } |
|||
public String Item_Name { get; set; } |
|||
public String Item_Desc1 { get; set; } |
|||
public String Item_Desc2 { get; set; } |
|||
public String ItemCode { get; set; } |
|||
public String Lot { get; set; } |
|||
public String Batch_SupplierBatch { get; set; } |
|||
public DateTime Batch_ProduceDate { get; set; } |
|||
public DateTime Batch_ExpireDate { get; set; } |
|||
} |
|||
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue