Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
JPSMysql
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
zxw
JPSMysql
Commits
d1103367
Commit
d1103367
authored
Nov 08, 2022
by
zxw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导入主平台数据新增箱标表
parent
1902a33d
全部展开
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
117 行增加
和
0 行删除
+117
-0
BaseJpEquipmentDetail.cs
JmpSqlServerModel/BaseJpEquipmentDetail.cs
+2
-0
BaseJpEquipmentSize.cs
JmpSqlServerModel/BaseJpEquipmentSize.cs
+6
-0
BaseJpOrganization.cs
JmpSqlServerModel/BaseJpOrganization.cs
+10
-0
BaseJpPoliceman.cs
JmpSqlServerModel/BaseJpPoliceman.cs
+4
-0
BaseJpSupplier.cs
JmpSqlServerModel/BaseJpSupplier.cs
+3
-0
BaseJpWarehouse.cs
JmpSqlServerModel/BaseJpWarehouse.cs
+6
-0
CommonJpEquipmentBoxMark.cs
JmpSqlServerModel/CommonJpEquipmentBoxMark.cs
+67
-0
CommonJpEquipmentInventory.cs
JmpSqlServerModel/CommonJpEquipmentInventory.cs
+10
-0
CommonJpEquipmentState.cs
JmpSqlServerModel/CommonJpEquipmentState.cs
+4
-0
JmpSqlServerContext.cs
JmpSqlServerModel/JmpSqlServerContext.cs
+0
-0
efpt.config.json
JmpSqlServerModel/efpt.config.json
+4
-0
ThirdPartyInitController.cs
JunmpPoliceStation/Controllers/ThirdPartyInitController.cs
+1
-0
没有找到文件。
JmpSqlServerModel/BaseJpEquipmentDetail.cs
View file @
d1103367
...
@@ -11,6 +11,7 @@ namespace JmpSqlServerModel
...
@@ -11,6 +11,7 @@ namespace JmpSqlServerModel
{
{
BaseJpEquipmentSize
=
new
HashSet
<
BaseJpEquipmentSize
>();
BaseJpEquipmentSize
=
new
HashSet
<
BaseJpEquipmentSize
>();
BaseJpSupplierEquipment
=
new
HashSet
<
BaseJpSupplierEquipment
>();
BaseJpSupplierEquipment
=
new
HashSet
<
BaseJpSupplierEquipment
>();
CommonJpEquipmentBoxMark
=
new
HashSet
<
CommonJpEquipmentBoxMark
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
}
}
...
@@ -35,6 +36,7 @@ namespace JmpSqlServerModel
...
@@ -35,6 +36,7 @@ namespace JmpSqlServerModel
public
virtual
BaseJpEquipmentInfo
Equipment
{
get
;
set
;
}
public
virtual
BaseJpEquipmentInfo
Equipment
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpEquipmentSize
>
BaseJpEquipmentSize
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpEquipmentSize
>
BaseJpEquipmentSize
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpSupplierEquipment
>
BaseJpSupplierEquipment
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpSupplierEquipment
>
BaseJpSupplierEquipment
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentBoxMark
>
CommonJpEquipmentBoxMark
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
}
}
...
...
JmpSqlServerModel/BaseJpEquipmentSize.cs
View file @
d1103367
...
@@ -9,6 +9,7 @@ namespace JmpSqlServerModel
...
@@ -9,6 +9,7 @@ namespace JmpSqlServerModel
{
{
public
BaseJpEquipmentSize
()
public
BaseJpEquipmentSize
()
{
{
CommonJpEquipmentBoxMark
=
new
HashSet
<
CommonJpEquipmentBoxMark
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
}
}
...
@@ -22,8 +23,13 @@ namespace JmpSqlServerModel
...
@@ -22,8 +23,13 @@ namespace JmpSqlServerModel
public
string
Note
{
get
;
set
;
}
public
string
Note
{
get
;
set
;
}
public
DateTime
UpdateTime
{
get
;
set
;
}
public
DateTime
UpdateTime
{
get
;
set
;
}
public
int
?
EpcType
{
get
;
set
;
}
public
int
?
EpcType
{
get
;
set
;
}
/// <summary>
/// 默认价格
/// </summary>
public
decimal
?
Price
{
get
;
set
;
}
public
virtual
BaseJpEquipmentDetail
Detail
{
get
;
set
;
}
public
virtual
BaseJpEquipmentDetail
Detail
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentBoxMark
>
CommonJpEquipmentBoxMark
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
}
}
...
...
JmpSqlServerModel/BaseJpOrganization.cs
View file @
d1103367
...
@@ -12,6 +12,7 @@ namespace JmpSqlServerModel
...
@@ -12,6 +12,7 @@ namespace JmpSqlServerModel
BaseJpCabinet
=
new
HashSet
<
BaseJpCabinet
>();
BaseJpCabinet
=
new
HashSet
<
BaseJpCabinet
>();
BaseJpPoliceman
=
new
HashSet
<
BaseJpPoliceman
>();
BaseJpPoliceman
=
new
HashSet
<
BaseJpPoliceman
>();
BaseJpWarehouse
=
new
HashSet
<
BaseJpWarehouse
>();
BaseJpWarehouse
=
new
HashSet
<
BaseJpWarehouse
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentState
=
new
HashSet
<
CommonJpEquipmentState
>();
CommonJpEquipmentState
=
new
HashSet
<
CommonJpEquipmentState
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
CommonJpUser
=
new
HashSet
<
CommonJpUser
>();
CommonJpUser
=
new
HashSet
<
CommonJpUser
>();
...
@@ -40,10 +41,19 @@ namespace JmpSqlServerModel
...
@@ -40,10 +41,19 @@ namespace JmpSqlServerModel
/// 打印单据数量
/// 打印单据数量
/// </summary>
/// </summary>
public
int
?
OrderCount
{
get
;
set
;
}
public
int
?
OrderCount
{
get
;
set
;
}
/// <summary>
/// 经度
/// </summary>
public
string
Longitude
{
get
;
set
;
}
/// <summary>
/// 纬度
/// </summary>
public
string
Latitude
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpCabinet
>
BaseJpCabinet
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpCabinet
>
BaseJpCabinet
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpPoliceman
>
BaseJpPoliceman
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpPoliceman
>
BaseJpPoliceman
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpWarehouse
>
BaseJpWarehouse
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpWarehouse
>
BaseJpWarehouse
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentState
>
CommonJpEquipmentState
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentState
>
CommonJpEquipmentState
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpUser
>
CommonJpUser
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpUser
>
CommonJpUser
{
get
;
set
;
}
...
...
JmpSqlServerModel/BaseJpPoliceman.cs
View file @
d1103367
...
@@ -38,6 +38,10 @@ namespace JmpSqlServerModel
...
@@ -38,6 +38,10 @@ namespace JmpSqlServerModel
/// 卡号
/// 卡号
/// </summary>
/// </summary>
public
string
CardNo
{
get
;
set
;
}
public
string
CardNo
{
get
;
set
;
}
/// <summary>
/// 身份证号
/// </summary>
public
string
IdCardNo
{
get
;
set
;
}
public
virtual
BaseJpCabinet
Cabinet
{
get
;
set
;
}
public
virtual
BaseJpCabinet
Cabinet
{
get
;
set
;
}
public
virtual
BaseJpOrganization
OrgizationCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpOrganization
OrgizationCodeNavigation
{
get
;
set
;
}
...
...
JmpSqlServerModel/BaseJpSupplier.cs
View file @
d1103367
...
@@ -10,6 +10,7 @@ namespace JmpSqlServerModel
...
@@ -10,6 +10,7 @@ namespace JmpSqlServerModel
public
BaseJpSupplier
()
public
BaseJpSupplier
()
{
{
BaseJpSupplierEquipment
=
new
HashSet
<
BaseJpSupplierEquipment
>();
BaseJpSupplierEquipment
=
new
HashSet
<
BaseJpSupplierEquipment
>();
CommonJpEquipmentBoxMark
=
new
HashSet
<
CommonJpEquipmentBoxMark
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
}
}
...
@@ -25,6 +26,7 @@ namespace JmpSqlServerModel
...
@@ -25,6 +26,7 @@ namespace JmpSqlServerModel
public
string
Phone
{
get
;
set
;
}
public
string
Phone
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpSupplierEquipment
>
BaseJpSupplierEquipment
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpSupplierEquipment
>
BaseJpSupplierEquipment
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentBoxMark
>
CommonJpEquipmentBoxMark
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
}
}
}
}
\ No newline at end of file
JmpSqlServerModel/BaseJpWarehouse.cs
View file @
d1103367
...
@@ -11,6 +11,7 @@ namespace JmpSqlServerModel
...
@@ -11,6 +11,7 @@ namespace JmpSqlServerModel
{
{
BaseJpShelfInfo
=
new
HashSet
<
BaseJpShelfInfo
>();
BaseJpShelfInfo
=
new
HashSet
<
BaseJpShelfInfo
>();
CommonJpChannelCfgV2
=
new
HashSet
<
CommonJpChannelCfgV2
>();
CommonJpChannelCfgV2
=
new
HashSet
<
CommonJpChannelCfgV2
>();
CommonJpEquipmentBoxMark
=
new
HashSet
<
CommonJpEquipmentBoxMark
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
CommonJpEquipmentState
=
new
HashSet
<
CommonJpEquipmentState
>();
CommonJpEquipmentState
=
new
HashSet
<
CommonJpEquipmentState
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
CommonJpEquipmentThreshold
=
new
HashSet
<
CommonJpEquipmentThreshold
>();
...
@@ -42,10 +43,15 @@ namespace JmpSqlServerModel
...
@@ -42,10 +43,15 @@ namespace JmpSqlServerModel
/// 是否启用通道读取指定类型装备
/// 是否启用通道读取指定类型装备
/// </summary>
/// </summary>
public
bool
?
IsEnableChannelReadEqu
{
get
;
set
;
}
public
bool
?
IsEnableChannelReadEqu
{
get
;
set
;
}
/// <summary>
/// 是否停用仓库
/// </summary>
public
bool
?
IsDisabled
{
get
;
set
;
}
public
virtual
BaseJpOrganization
Orgization
{
get
;
set
;
}
public
virtual
BaseJpOrganization
Orgization
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpShelfInfo
>
BaseJpShelfInfo
{
get
;
set
;
}
public
virtual
ICollection
<
BaseJpShelfInfo
>
BaseJpShelfInfo
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpChannelCfgV2
>
CommonJpChannelCfgV2
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpChannelCfgV2
>
CommonJpChannelCfgV2
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentBoxMark
>
CommonJpEquipmentBoxMark
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentState
>
CommonJpEquipmentState
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentState
>
CommonJpEquipmentState
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentThreshold
>
CommonJpEquipmentThreshold
{
get
;
set
;
}
...
...
JmpSqlServerModel/CommonJpEquipmentBoxMark.cs
0 → 100644
View file @
d1103367
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
#
nullable
disable
using
System
;
using
System.Collections.Generic
;
namespace
JmpSqlServerModel
{
public
partial
class
CommonJpEquipmentBoxMark
{
public
CommonJpEquipmentBoxMark
()
{
CommonJpEquipmentInventory
=
new
HashSet
<
CommonJpEquipmentInventory
>();
}
public
string
Id
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
?
CreateTime
{
get
;
set
;
}
/// <summary>
/// epc
/// </summary>
public
string
Epc
{
get
;
set
;
}
/// <summary>
/// 箱内数量
/// </summary>
public
int
?
OneBoxNum
{
get
;
set
;
}
/// <summary>
/// 装备详细类型id
/// </summary>
public
string
EquipmentDetailId
{
get
;
set
;
}
/// <summary>
/// 装备型号id
/// </summary>
public
string
SizeId
{
get
;
set
;
}
/// <summary>
/// 供应商id
/// </summary>
public
string
SupplierId
{
get
;
set
;
}
/// <summary>
/// 状态
/// </summary>
public
int
?
CurrentState
{
get
;
set
;
}
/// <summary>
/// 仓库id
/// </summary>
public
string
WarehouseId
{
get
;
set
;
}
/// <summary>
/// 重装箱状态
/// 0:未重装箱
/// 1:未打印
/// 2:已打印
/// </summary>
public
int
?
ReloadBoxingState
{
get
;
set
;
}
/// <summary>
/// 旧版epc
/// </summary>
public
string
OldEpc
{
get
;
set
;
}
public
virtual
BaseJpEquipmentDetail
EquipmentDetail
{
get
;
set
;
}
public
virtual
BaseJpEquipmentSize
Size
{
get
;
set
;
}
public
virtual
BaseJpSupplier
Supplier
{
get
;
set
;
}
public
virtual
BaseJpWarehouse
Warehouse
{
get
;
set
;
}
public
virtual
ICollection
<
CommonJpEquipmentInventory
>
CommonJpEquipmentInventory
{
get
;
set
;
}
}
}
\ No newline at end of file
JmpSqlServerModel/CommonJpEquipmentInventory.cs
View file @
d1103367
...
@@ -90,10 +90,20 @@ namespace JmpSqlServerModel
...
@@ -90,10 +90,20 @@ namespace JmpSqlServerModel
/// 装备包实例id
/// 装备包实例id
/// </summary>
/// </summary>
public
string
BagInventoryId
{
get
;
set
;
}
public
string
BagInventoryId
{
get
;
set
;
}
/// <summary>
/// 组织机构id
/// </summary>
public
string
OrgId
{
get
;
set
;
}
/// <summary>
/// 是否已报废待销毁
/// </summary>
public
bool
IsFixed
{
get
;
set
;
}
public
virtual
CommonJpEquipmentBoxMark
BoxMark
{
get
;
set
;
}
public
virtual
BaseJpCabinet
Cabinet
{
get
;
set
;
}
public
virtual
BaseJpCabinet
Cabinet
{
get
;
set
;
}
public
virtual
BaseJpEquipmentDetail
EquipmentCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpEquipmentDetail
EquipmentCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpEquipmentSize
EquipmentSizecodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpEquipmentSize
EquipmentSizecodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpOrganization
Org
{
get
;
set
;
}
public
virtual
BaseJpPoliceman
PoliceCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpPoliceman
PoliceCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpShelfInfo
Shelf
{
get
;
set
;
}
public
virtual
BaseJpShelfInfo
Shelf
{
get
;
set
;
}
public
virtual
BaseJpSupplier
SupplierCodeNavigation
{
get
;
set
;
}
public
virtual
BaseJpSupplier
SupplierCodeNavigation
{
get
;
set
;
}
...
...
JmpSqlServerModel/CommonJpEquipmentState.cs
View file @
d1103367
...
@@ -62,6 +62,10 @@ namespace JmpSqlServerModel
...
@@ -62,6 +62,10 @@ namespace JmpSqlServerModel
/// 自建平台基础orgid
/// 自建平台基础orgid
/// </summary>
/// </summary>
public
string
ThirdBaseOrgId
{
get
;
set
;
}
public
string
ThirdBaseOrgId
{
get
;
set
;
}
/// <summary>
/// 调岗id
/// </summary>
public
string
ShiftJobsId
{
get
;
set
;
}
public
virtual
BaseJpCabinet
CabinetIdIntoNavigation
{
get
;
set
;
}
public
virtual
BaseJpCabinet
CabinetIdIntoNavigation
{
get
;
set
;
}
public
virtual
BaseJpCabinet
CabinetIdOutNavigation
{
get
;
set
;
}
public
virtual
BaseJpCabinet
CabinetIdOutNavigation
{
get
;
set
;
}
...
...
JmpSqlServerModel/JmpSqlServerContext.cs
View file @
d1103367
差异被折叠。
点击展开。
JmpSqlServerModel/efpt.config.json
View file @
d1103367
...
@@ -62,6 +62,10 @@
...
@@ -62,6 +62,10 @@
"ObjectType"
:
0
"ObjectType"
:
0
},
},
{
{
"Name"
:
"[dbo].[common_jp_equipment_box_mark]"
,
"ObjectType"
:
0
},
{
"Name"
:
"[dbo].[common_jp_equipment_inventory]"
,
"Name"
:
"[dbo].[common_jp_equipment_inventory]"
,
"ObjectType"
:
0
"ObjectType"
:
0
},
},
...
...
JunmpPoliceStation/Controllers/ThirdPartyInitController.cs
View file @
d1103367
...
@@ -96,6 +96,7 @@ namespace JunmpPoliceStation.Controllers
...
@@ -96,6 +96,7 @@ namespace JunmpPoliceStation.Controllers
//通道配置
//通道配置
_mysqlContext
.
BulkSynchronize
<
JmpModel
.
Model
.
CommonJpChannelCfgV2
>(
_sqlServerContext
.
CommonJpChannelCfgV2
.
Include
(
x
=>
x
.
Warehouse
).
Where
(
x
=>
orgList
.
Contains
(
x
.
Warehouse
.
OrgizationId
)).
ToList
());
_mysqlContext
.
BulkSynchronize
<
JmpModel
.
Model
.
CommonJpChannelCfgV2
>(
_sqlServerContext
.
CommonJpChannelCfgV2
.
Include
(
x
=>
x
.
Warehouse
).
Where
(
x
=>
orgList
.
Contains
(
x
.
Warehouse
.
OrgizationId
)).
ToList
());
//装备
//装备
_mysqlContext
.
BulkSynchronize
<
JmpModel
.
Model
.
CommonJpEquipmentBoxMark
>(
_sqlServerContext
.
CommonJpEquipmentBoxMark
.
Include
(
x
=>
x
.
Warehouse
).
Where
(
x
=>
orgList
.
Contains
(
x
.
Warehouse
.
OrgizationId
)).
ToList
());
_mysqlContext
.
BulkSynchronize
<
JmpModel
.
Model
.
CommonJpEquipmentInventory
>(
_sqlServerContext
.
CommonJpEquipmentInventory
.
Include
(
x
=>
x
.
WarehouseCodeNavigation
).
Where
(
x
=>
orgList
.
Contains
(
x
.
WarehouseCodeNavigation
.
OrgizationId
)).
ToList
());
_mysqlContext
.
BulkSynchronize
<
JmpModel
.
Model
.
CommonJpEquipmentInventory
>(
_sqlServerContext
.
CommonJpEquipmentInventory
.
Include
(
x
=>
x
.
WarehouseCodeNavigation
).
Where
(
x
=>
orgList
.
Contains
(
x
.
WarehouseCodeNavigation
.
OrgizationId
)).
ToList
());
//_unitOfWork.DbContext.BulkSynchronize<JmpModel.Model.CommonJpEquipmentState>(_sqlServerContext.CommonJpEquipmentState.Where(x => orgList.Contains(x.OrgId)).ToList());
//_unitOfWork.DbContext.BulkSynchronize<JmpModel.Model.CommonJpEquipmentState>(_sqlServerContext.CommonJpEquipmentState.Where(x => orgList.Contains(x.OrgId)).ToList());
//阈值
//阈值
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论