Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
Laisi_AutoMES2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jiawei.su
Laisi_AutoMES2
Commits
361f2e73
Commit
361f2e73
authored
Jan 20, 2021
by
xin.yang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some update
parent
b1cff347
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
ApiAccDbContext.cs
...tories/Siger.Middlelayer.AccRepository/ApiAccDbContext.cs
+1
-1
siger_automation_tray.cs
...ddlelayer.AccRepository/Entities/siger_automation_tray.cs
+2
-2
AutomationLocationRepository.cs
...ccRepository/Repositories/AutomationLocationRepository.cs
+2
-2
IAutomationLocationRepository.cs
...y/Repositories/Interface/IAutomationLocationRepository.cs
+1
-1
DB.script
Server/Infrastructure/Script/DB.script
+3
-3
No files found.
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/ApiAccDbContext.cs
View file @
361f2e73
...
...
@@ -152,7 +152,7 @@ namespace Siger.Middlelayer.AccRepository
public
DbSet
<
siger_automation_fixture_tools_assembly
>
siger_automation_fixture_tools_assembly
{
get
;
set
;
}
public
DbSet
<
siger_automation_fixture_tools
>
siger_automation_fixture_tools
{
get
;
set
;
}
public
DbSet
<
siger_automation_fixture_tools_product
>
siger_automation_fixture_tools_product
{
get
;
set
;
}
public
DbSet
<
siger_automation_
tray
>
siger_automation_tray
{
get
;
set
;
}
public
DbSet
<
siger_automation_
location
>
siger_automation_location
{
get
;
set
;
}
public
DbSet
<
siger_automation_section_property
>
siger_automation_section_property
{
get
;
set
;
}
public
DbSet
<
siger_automation_section_route
>
siger_automation_section_route
{
get
;
set
;
}
public
DbSet
<
siger_automation_task_list
>
siger_automation_task_list
{
get
;
set
;
}
...
...
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Entities/siger_automation_tray.cs
View file @
361f2e73
...
...
@@ -5,9 +5,9 @@ using System.Text;
namespace
Siger.Middlelayer.AccRepository.Entities
{
/// <summary>
///
托盘台账列表
///
储位信息
/// </summary>
public
class
siger_automation_
tray
:
AccEntityBase
public
class
siger_automation_
location
:
AccEntityBase
{
public
string
guid
{
get
;
set
;
}
/// <summary>
...
...
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Repositories/Automation
Tray
Repository.cs
→
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Repositories/Automation
Location
Repository.cs
View file @
361f2e73
...
...
@@ -9,10 +9,10 @@ using Siger.Middlelayer.Repository.Paged;
namespace
Siger.Middlelayer.AccRepository.Repositories
{
internal
class
Automation
TrayRepository
:
AccRepositoryBase
<
siger_automation_tray
>,
IAutomationTray
Repository
internal
class
Automation
LocationRepository
:
AccRepositoryBase
<
siger_automation_location
>,
IAutomationLocation
Repository
{
private
ApiAccDbContext
_context
;
public
Automation
Tray
Repository
(
ApiAccDbContext
context
)
:
base
(
context
)
public
Automation
Location
Repository
(
ApiAccDbContext
context
)
:
base
(
context
)
{
_context
=
context
;
}
...
...
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Repositories/Interface/IAutomation
Tray
Repository.cs
→
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Repositories/Interface/IAutomation
Location
Repository.cs
View file @
361f2e73
...
...
@@ -4,7 +4,7 @@ using Siger.Middlelayer.Repository.Paged;
namespace
Siger.Middlelayer.AccRepository.Repositories.Interface
{
public
interface
IAutomation
TrayRepository
:
IAccRepositoryBase
<
siger_automation_tray
>
public
interface
IAutomation
LocationRepository
:
IAccRepositoryBase
<
siger_automation_location
>
{
}
...
...
Server/Infrastructure/Script/DB.script
View file @
361f2e73
...
...
@@ -255,10 +255,10 @@ CREATE TABLE IF NOT EXISTS `siger_automation_fixture_tools_product` (
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
--
托盘台账列表
-- Table structure for siger_automation_
tray
--
储位工装信息
-- Table structure for siger_automation_
location
-- ----------------------------
CREATE TABLE IF NOT EXISTS `siger_automation_
tray
` (
CREATE TABLE IF NOT EXISTS `siger_automation_
location
` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`locationid` int(11) NOT NULL DEFAULT 0 COMMENT '储位位置',
`fixturetools` varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '工装GUID',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment