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
4835419a
Commit
4835419a
authored
Jan 20, 2021
by
xin.yang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some update
parent
d729ace3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
77 additions
and
4 deletions
+77
-4
.gitignore
.gitignore
+34
-4
LocationController.cs
Server/Apis/Siger.ApiWMS/Controllers/LocationController.cs
+0
-0
RequestEnum.cs
Server/Common/Siger.Middlelayer.Share/Enum/RequestEnum.cs
+3
-0
siger_wms_storage_location.cs
...ayer.WmsRepository/Entities/siger_wms_storage_location.cs
+2
-0
RequestAddLocation.cs
...r.Middlelayer.WmsRepository/Request/RequestAddLocation.cs
+38
-0
No files found.
.gitignore
View file @
4835419a
################################################################################
# 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。
#
###############################################################################
#Ignore thumbnails created by Windows
Thumbs.db
#
Ignore files built by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
.vs/
#Nuget packages folder
packages/
Server/.vs/SigerData/v15/Server/sqlite3/storage.ide
*.pyc
[Bb]in/
[Oo]bj/
[Ll]og/
Server/Apis/Siger.ApiWMS/Controllers/LocationController.cs
View file @
4835419a
This diff is collapsed.
Click to expand it.
Server/Common/Siger.Middlelayer.Share/Enum/RequestEnum.cs
View file @
4835419a
...
...
@@ -1461,5 +1461,8 @@ namespace Siger.Middlelayer.Common
UserNotExists
,
[
Description
(
"默认展示已存在"
)]
DefaultDisplayExists
,
[
Description
(
"未找到储位类别"
)]
LocationTypeNotFound
,
}
}
Server/Infrastructure/Repositories/Siger.Middlelayer.WmsRepository/Entities/siger_wms_storage_location.cs
View file @
4835419a
...
...
@@ -86,5 +86,7 @@ namespace Siger.Middlelayer.WmsRepository.Entities
public
string
option
{
get
;
set
;
}
public
string
realname
{
get
;
set
;
}
public
int
locationid
{
get
;
set
;
}
}
}
Server/Infrastructure/Repositories/Siger.Middlelayer.WmsRepository/Request/RequestAddLocation.cs
View file @
4835419a
using
Siger.Middlelayer.Common
;
using
System.Collections.Generic
;
namespace
Siger.Middlelayer.WmsRepository.Request
{
...
...
@@ -13,4 +14,41 @@ namespace Siger.Middlelayer.WmsRepository.Request
public
LocationTypeEnum
type
{
get
;
set
;
}
}
public
class
RequestAddLocationModel
{
/// <summary>
/// 仓库ID
/// </summary>
public
int
warehouseid
{
get
;
set
;
}
/// <summary>
/// 储位ID
/// </summary>
public
string
storeID
{
get
;
set
;
}
/// <summary>
/// 是否停用0:停用 1:启用
/// </summary>
public
int
status
{
get
;
set
;
}
public
List
<
LocationModel
>
locations
{
get
;
set
;
}
=
new
List
<
LocationModel
>();
}
public
class
LocationModel
{
/// <summary>
/// 储位类别ID
/// </summary>
public
int
id
{
get
;
set
;
}
/// <summary>
/// 储位类别名称
/// </summary>
//public string name { get; set; }
/// <summary>
/// 储位名称
/// </summary>
public
string
val
{
get
;
set
;
}
/// <summary>
/// 储位自增ID
/// </summary>
public
string
locationid
{
get
;
set
;
}
}
}
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