commit
ee029d3dfd
1653 changed files with 526003 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.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
<configSections> |
|||
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
|||
<section name="Stone.Common.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> |
|||
</sectionGroup> |
|||
</configSections> |
|||
<applicationSettings> |
|||
<Stone.Common.Properties.Settings> |
|||
<setting name="Stone_Common_WinService_Service" serializeAs="String"> |
|||
<value>http://localhost:55160/Service.svc</value> |
|||
</setting> |
|||
</Stone.Common.Properties.Settings> |
|||
</applicationSettings> |
|||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,364 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using System.Data; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class EntityBase : IDisposable |
|||
{ |
|||
public string TableName = string.Empty; |
|||
public DataTable Table; |
|||
public LocalDBService db; |
|||
|
|||
public string sql = string.Empty; |
|||
|
|||
#region 构造函数和初始化代码
|
|||
public EntityBase() |
|||
{ |
|||
} |
|||
|
|||
public void Init() |
|||
{ |
|||
if (db == null) |
|||
{ |
|||
db = new LocalDBService(); |
|||
} |
|||
Table = new DataTable(); |
|||
Table.TableName = TableName; |
|||
|
|||
//初始化时执行一个SQL语句,用于获取Table的结构
|
|||
sql = "select top 0 * from " + TableName; |
|||
Table = db.Exec_DataSet(sql).Tables[0]; |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 获取数据
|
|||
public virtual DataSet GetData() |
|||
{ |
|||
sql = "select * from " + TableName; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
public virtual DataSet GetData(string strwhere) |
|||
{ |
|||
sql = "select * from " + TableName + " where " + strwhere; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
public virtual DataSet GetData(string fields, int ID) |
|||
{ |
|||
if (fields == "") fields = "*"; |
|||
sql = "select " + fields + " from " + TableName + " where id=" + ID; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
public virtual DataSet GetData(string fields, string orderby) |
|||
{ |
|||
if (fields == "") fields = "*"; |
|||
sql = "select " + fields + " from " + TableName + " order by " + orderby; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
public virtual DataSet GetData(string fields, string strwhere, string orderby) |
|||
{ |
|||
if (fields == "") fields = "*"; |
|||
sql = "select " + fields + " from " + TableName + " where " + strwhere + " order by " + orderby; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
public virtual DataSet GetDataDistinct(string fields, string strwhere, string orderby) |
|||
{ |
|||
sql = "select Distinct " + fields + " from " + TableName + " where " + strwhere + " order by " + orderby; |
|||
return db.Exec_DataSet(sql); |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 获取分页数据
|
|||
|
|||
public virtual DataSet GetDataLimit(int rows1, int rows2) |
|||
{ |
|||
// string sql = @"
|
|||
// select {0} from (
|
|||
// select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5}
|
|||
// ) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} and ({5})
|
|||
// ";
|
|||
|
|||
string sql = @"
|
|||
select {0} from ( |
|||
select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5} |
|||
) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} |
|||
";
|
|||
|
|||
object[] obj = new object[6]; |
|||
obj[0] = "*"; |
|||
obj[1] = "[ID] asc"; |
|||
obj[2] = TableName; |
|||
obj[3] = rows1; |
|||
obj[4] = rows2; |
|||
obj[5] = "1=1"; |
|||
sql = string.Format(sql, obj); |
|||
|
|||
DataSet dsData = db.Exec_DataSet(sql); |
|||
dsData.Tables[0].Columns.Remove("rows_number_9999999"); |
|||
|
|||
return dsData; |
|||
|
|||
} |
|||
|
|||
public virtual DataSet GetDataLimit(int rows1, int rows2, string strwhere) |
|||
{ |
|||
// string sql = @"
|
|||
// select {0} from (
|
|||
// select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5}
|
|||
// ) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} and ({5})
|
|||
// ";
|
|||
|
|||
string sql = @"
|
|||
select {0} from ( |
|||
select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5} |
|||
) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} |
|||
";
|
|||
|
|||
object[] obj = new object[6]; |
|||
obj[0] = "*"; |
|||
obj[1] = "[ID] asc"; |
|||
obj[2] = TableName; |
|||
obj[3] = rows1; |
|||
obj[4] = rows2; |
|||
obj[5] = strwhere; |
|||
sql = string.Format(sql, obj); |
|||
|
|||
DataSet dsData = db.Exec_DataSet(sql); |
|||
dsData.Tables[0].Columns.Remove("rows_number_9999999"); |
|||
|
|||
return dsData; |
|||
|
|||
} |
|||
|
|||
public virtual DataSet GetDataLimit(int rows1, int rows2, string fields, string orderby) |
|||
{ |
|||
if (fields == "") fields = "*"; |
|||
|
|||
// string sql = @"
|
|||
// select {0} from (
|
|||
// select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5}
|
|||
// ) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} and ({5})
|
|||
// ";
|
|||
|
|||
string sql = @"
|
|||
select {0} from ( |
|||
select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5} |
|||
) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} |
|||
";
|
|||
|
|||
object[] obj = new object[6]; |
|||
obj[0] = fields; |
|||
obj[1] = orderby; |
|||
obj[2] = TableName; |
|||
obj[3] = rows1; |
|||
obj[4] = rows2; |
|||
obj[5] = "1=1"; |
|||
sql = string.Format(sql, obj); |
|||
|
|||
DataSet dsData = db.Exec_DataSet(sql); |
|||
dsData.Tables[0].Columns.Remove("rows_number_9999999"); |
|||
|
|||
return dsData; |
|||
|
|||
} |
|||
|
|||
public virtual DataSet GetDataLimit(int rows1, int rows2, string fields, string strwhere, string orderby) |
|||
{ |
|||
if (fields == "") fields = "*"; |
|||
|
|||
// string sql = @"
|
|||
// select {0} from (
|
|||
// select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5}
|
|||
// ) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} and ({5})
|
|||
// ";
|
|||
|
|||
string sql = @"
|
|||
select {0} from ( |
|||
select ROW_NUMBER() over(order by {1}) as rows_number_9999999, {0} from {2} where {5} |
|||
) as query_temp_table_9999999 where rows_number_9999999 between {3} and {4} |
|||
";
|
|||
|
|||
object[] obj = new object[6]; |
|||
obj[0] = fields; |
|||
obj[1] = orderby; |
|||
obj[2] = TableName; |
|||
obj[3] = rows1; |
|||
obj[4] = rows2; |
|||
obj[5] = strwhere; |
|||
sql = string.Format(sql, obj); |
|||
|
|||
DataSet dsData = db.Exec_DataSet(sql); |
|||
dsData.Tables[0].Columns.Remove("rows_number_9999999"); |
|||
|
|||
return dsData; |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 获取不重复的数据
|
|||
|
|||
public virtual DataTable GetDistinctData(string Fields) |
|||
{ |
|||
string sql = "select Distinct [" + Fields + "] from " + TableName; |
|||
return db.Exec_DataSet(sql).Tables[0]; |
|||
} |
|||
|
|||
#endregion
|
|||
|
|||
#region 增、删、修
|
|||
public virtual DataRow Add(DataRow drData) |
|||
{ |
|||
DataRow drResult = null; |
|||
sql = "insert into {0}({1}) values({2});select @@Identity"; |
|||
string fields = ""; |
|||
string values = ""; |
|||
foreach (DataColumn dc in Table.Columns) |
|||
{ |
|||
if (dc.ColumnName.ToUpper() != "ID") |
|||
{ |
|||
if (drData[dc.ColumnName] is DBNull) continue; |
|||
|
|||
fields += "[" + dc.ColumnName + "]" + ","; |
|||
|
|||
if ((dc.DataType.Name == "Int32" || dc.DataType.Name == "Decimal") && drData[dc.ColumnName].ToString() == "") |
|||
{ |
|||
values += "'0',"; |
|||
} |
|||
else if (dc.DataType.Name == "DateTime" && drData[dc.ColumnName].ToString() == "") |
|||
{ |
|||
values += "getdate(),"; |
|||
} |
|||
else |
|||
{ |
|||
values += "'" + drData[dc.ColumnName] + "',"; |
|||
} |
|||
} |
|||
} |
|||
if (fields.Length > 1) fields = fields.Substring(0, fields.Length - 1); |
|||
if (values.Length > 1) values = values.Substring(0, values.Length - 1); |
|||
|
|||
object[] o = new object[3]; |
|||
o[0] = TableName; |
|||
o[1] = fields; |
|||
o[2] = values; |
|||
|
|||
sql = string.Format(sql, o); |
|||
|
|||
string id = db.Exec_DataSet(sql).Tables[0].Rows[0][0].ToString(); |
|||
sql = "select * from " + TableName + " where id=" + id; |
|||
drResult = db.Exec_DataSet(sql).Tables[0].Rows[0]; |
|||
return drResult; |
|||
} |
|||
|
|||
public virtual DataRow Edit(DataRow drData) |
|||
{ |
|||
DataRow drResult = null; |
|||
sql = "update {0} set {1} where id={2}"; |
|||
string fields = ""; |
|||
string values = ""; |
|||
foreach (DataColumn dc in Table.Columns) |
|||
{ |
|||
if (dc.ColumnName.ToUpper() != "ID") |
|||
{ |
|||
if (drData[dc.ColumnName] is DBNull) continue; |
|||
|
|||
if ((dc.DataType.Name == "Int32" || dc.DataType.Name == "Decimal") && drData[dc.ColumnName].ToString() == "") |
|||
{ |
|||
values = "'0'"; |
|||
} |
|||
else if (dc.DataType.Name == "DateTime") |
|||
{ |
|||
//当前小于或等于1700年1月1日时,将日期的值设置为null
|
|||
if (Convert.ToDateTime(drData[dc.ColumnName]) <= new DateTime(1700, 1, 1)) |
|||
{ |
|||
values = "null"; |
|||
} |
|||
else |
|||
{ |
|||
values = "'" + drData[dc.ColumnName] + "'"; |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
values = "'" + drData[dc.ColumnName] + "'"; |
|||
} |
|||
|
|||
fields += "[" + dc.ColumnName + "]=" + values + ","; |
|||
} |
|||
} |
|||
if (fields.Length > 1) fields = fields.Substring(0, fields.Length - 1); |
|||
|
|||
object[] o = new object[3]; |
|||
o[0] = TableName; |
|||
o[1] = fields; |
|||
o[2] = drData["id"]; |
|||
|
|||
sql = string.Format(sql, o); |
|||
|
|||
db.Exec_NonQuery(sql); |
|||
|
|||
string id = drData["id"].ToString(); |
|||
sql = "select * from " + TableName + " where id=" + id; |
|||
|
|||
drResult = db.Exec_DataSet(sql).Tables[0].Rows[0]; |
|||
return drResult; |
|||
} |
|||
|
|||
public virtual void Edit(string SetFields, string strWhere) |
|||
{ |
|||
sql = "update {0} set {1} where {2}"; |
|||
|
|||
object[] o = new object[3]; |
|||
o[0] = TableName; |
|||
o[1] = SetFields; |
|||
o[2] = strWhere; |
|||
sql = string.Format(sql, o); |
|||
|
|||
db.Exec_NonQuery(sql); |
|||
} |
|||
|
|||
public virtual void Del(DataRow drData) |
|||
{ |
|||
string ID = drData["id"].ToString(); |
|||
sql = "delete from " + TableName + " where ID=" + ID; |
|||
db.Exec_NonQuery(sql); |
|||
} |
|||
|
|||
public virtual void Del(int ID) |
|||
{ |
|||
sql = "delete from " + TableName + " where ID=" + ID; |
|||
db.Exec_NonQuery(sql); |
|||
} |
|||
|
|||
public virtual void Del(string strWhere) |
|||
{ |
|||
sql = "delete from " + TableName + " where " + strWhere; |
|||
db.Exec_NonQuery(sql); |
|||
} |
|||
#endregion
|
|||
|
|||
#region 获取系统当前时间
|
|||
public DateTime GetDateTime() |
|||
{ |
|||
return Convert.ToDateTime(db.Exec_DataSet("select getdate() as d").Tables[0].Rows[0]["d"]); |
|||
} |
|||
#endregion
|
|||
|
|||
#region 释放对象
|
|||
public void Dispose() |
|||
{ |
|||
if (Table != null) Table.Dispose(); |
|||
} |
|||
#endregion
|
|||
|
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_byAJISToMES : EntityBase |
|||
{ |
|||
public static string TableNameNew = "byAJISToMES"; |
|||
|
|||
public Entity_byAJISToMES() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_byAJISToMES(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_AJIS : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_AJIS"; |
|||
|
|||
public Entity_t_AJIS() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_AJIS(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_AJISCarpet : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_AJISCarpet"; |
|||
|
|||
public Entity_t_AJISCarpet() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_AJISCarpet(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_AssyStation : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_AssyStation"; |
|||
|
|||
public Entity_t_AssyStation() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_AssyStation(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_BarCode : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_BarCode"; |
|||
|
|||
public Entity_t_BarCode() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_BarCode(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Batch : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Batch"; |
|||
|
|||
public Entity_t_Batch() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Batch(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_BillCheck : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_BillCheck"; |
|||
|
|||
public Entity_t_BillCheck() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_BillCheck(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_BillNo : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_BillNo"; |
|||
|
|||
public Entity_t_BillNo() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_BillNo(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_BillPlan : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_BillPlan"; |
|||
|
|||
public Entity_t_BillPlan() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_BillPlan(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_BillShip : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_BillShip"; |
|||
|
|||
public Entity_t_BillShip() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_BillShip(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Bom : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Bom"; |
|||
|
|||
public Entity_t_Bom() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Bom(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_CarModel : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_CarModel"; |
|||
|
|||
public Entity_t_CarModel() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_CarModel(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_CarType : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_CarType"; |
|||
|
|||
public Entity_t_CarType() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_CarType(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Color : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Color"; |
|||
|
|||
public Entity_t_Color() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Color(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ColorPart : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ColorPart"; |
|||
|
|||
public Entity_t_ColorPart() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ColorPart(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Customer : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Customer"; |
|||
|
|||
public Entity_t_Customer() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Customer(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_DELFOR : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_DELFOR"; |
|||
|
|||
public Entity_t_DELFOR() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_DELFOR(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_DELFOR_All : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_DELFOR_All"; |
|||
|
|||
public Entity_t_DELFOR_All() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_DELFOR_All(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Data : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Data"; |
|||
|
|||
public Entity_t_Data() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Data(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Dep : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Dep"; |
|||
|
|||
public Entity_t_Dep() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Dep(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Emp : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Emp"; |
|||
|
|||
public Entity_t_Emp() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Emp(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_FGPartStuffix : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_FGPartStuffix"; |
|||
|
|||
public Entity_t_FGPartStuffix() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_FGPartStuffix(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Input : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Input"; |
|||
|
|||
public Entity_t_Input() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Input(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_JIS_Assemble : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_JIS_Assemble"; |
|||
|
|||
public Entity_t_JIS_Assemble() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_JIS_Assemble(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_JIS_List : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_JIS_List"; |
|||
|
|||
public Entity_t_JIS_List() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_JIS_List(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_JIS_Log : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_JIS_Log"; |
|||
|
|||
public Entity_t_JIS_Log() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_JIS_Log(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_LED : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_LED"; |
|||
|
|||
public Entity_t_LED() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_LED(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Location : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Location"; |
|||
|
|||
public Entity_t_Location() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Location(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Manufactor : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Manufactor"; |
|||
|
|||
public Entity_t_Manufactor() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Manufactor(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Model : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Model"; |
|||
|
|||
public Entity_t_Model() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Model(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ModunoABase : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ModunoABase"; |
|||
|
|||
public Entity_t_ModunoABase() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ModunoABase(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ModunoAM : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ModunoAM"; |
|||
|
|||
public Entity_t_ModunoAM() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ModunoAM(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ModunoMBase : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ModunoMBase"; |
|||
|
|||
public Entity_t_ModunoMBase() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ModunoMBase(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_OptionBOM : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_OptionBOM"; |
|||
|
|||
public Entity_t_OptionBOM() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_OptionBOM(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_PJIS : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_PJIS"; |
|||
|
|||
public Entity_t_PJIS() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_PJIS(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_PJISCarpet : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_PJISCarpet"; |
|||
|
|||
public Entity_t_PJISCarpet() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_PJISCarpet(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_PJISItem : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_PJISItem"; |
|||
|
|||
public Entity_t_PJISItem() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_PJISItem(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_PackageScan : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_PackageScan"; |
|||
|
|||
public Entity_t_PackageScan() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_PackageScan(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Part_ValidityDays : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Part_ValidityDays"; |
|||
|
|||
public Entity_t_Part_ValidityDays() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Part_ValidityDays(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_PartsFamily : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_PartsFamily"; |
|||
|
|||
public Entity_t_PartsFamily() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_PartsFamily(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Position : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Position"; |
|||
|
|||
public Entity_t_Position() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Position(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ProdnoBase : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ProdnoBase"; |
|||
|
|||
public Entity_t_ProdnoBase() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ProdnoBase(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ProdnoRule1 : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ProdnoRule1"; |
|||
|
|||
public Entity_t_ProdnoRule1() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ProdnoRule1(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ProdnoRule2 : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ProdnoRule2"; |
|||
|
|||
public Entity_t_ProdnoRule2() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ProdnoRule2(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Product : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Product"; |
|||
|
|||
public Entity_t_Product() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Product(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ProductType : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ProductType"; |
|||
|
|||
public Entity_t_ProductType() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ProductType(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Project : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Project"; |
|||
|
|||
public Entity_t_Project() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Project(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ProjectUpdate : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_ProjectUpdate"; |
|||
|
|||
public Entity_t_ProjectUpdate() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ProjectUpdate(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Quality : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Quality"; |
|||
|
|||
public Entity_t_Quality() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Quality(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Quality_interface : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Quality_interface"; |
|||
|
|||
public Entity_t_Quality_interface() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Quality_interface(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_SequenceNo : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_SequenceNo"; |
|||
|
|||
public Entity_t_SequenceNo() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_SequenceNo(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using Gm_WMS.DataAccess.DataService; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_Spec : EntityBase |
|||
{ |
|||
public static string TableNameNew = "t_Spec"; |
|||
|
|||
public Entity_t_Spec() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_Spec(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue