Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
TakeStock
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
pengjinyang
TakeStock
Commits
a0dcb313
Commit
a0dcb313
authored
Dec 03, 2020
by
hexikun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
库存盘点添加创建人名称
parent
4fbd0a71
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
TakeStockSchedule.cs
Domain/TakeStock/TakeStockSchedule.cs
+6
-0
launchSettings.json
TakeStock.API/Properties/launchSettings.json
+1
-1
ScheduleInputDto.cs
TakeStock.Application/TakeStock/Dto/ScheduleInputDto.cs
+5
-0
ScheduleOutputDto.cs
TakeStock.Application/TakeStock/Dto/ScheduleOutputDto.cs
+4
-0
No files found.
Domain/TakeStock/TakeStockSchedule.cs
View file @
a0dcb313
...
...
@@ -71,5 +71,11 @@ namespace Domain.TakeStock
public
DateTime
?
DeletionTime
{
get
;
set
;
}
//public virtual List<TakeStockOrder> Orders { get; set; }
[
SugarColumn
(
IsNullable
=
true
)]
public
string
CreatorUserName
{
get
;
set
;
}
[
SugarColumn
(
IsNullable
=
true
)]
public
string
LastModifierUserName
{
get
;
set
;
}
}
}
TakeStock.API/Properties/launchSettings.json
View file @
a0dcb313
...
...
@@ -24,7 +24,7 @@
"environmentVariables"
:
{
"ASPNETCORE_ENVIRONMENT"
:
"Development"
},
"applicationUrl"
:
"http://localhost:500
0
"
"applicationUrl"
:
"http://localhost:500
2
"
},
"Docker"
:
{
"commandName"
:
"Docker"
,
...
...
TakeStock.Application/TakeStock/Dto/ScheduleInputDto.cs
View file @
a0dcb313
...
...
@@ -29,6 +29,11 @@ namespace TakeStock.Application.TakeStock.Dto
public
long
?
CreatorUserId
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
CreatorUserName
{
get
;
set
;
}
public
virtual
List
<
OrderInputDto
>
Orders
{
get
;
set
;
}
}
}
TakeStock.Application/TakeStock/Dto/ScheduleOutputDto.cs
View file @
a0dcb313
...
...
@@ -43,8 +43,12 @@ namespace TakeStock.Application.TakeStock.Dto
public
long
?
CreatorUserId
{
get
;
set
;
}
public
string
CreatorUserName
{
get
;
set
;
}
public
DateTime
?
LastModificationTime
{
get
;
set
;
}
public
string
LastModifierUserName
{
get
;
set
;
}
public
long
?
LastModifierUserId
{
get
;
set
;
}
public
bool
IsDeleted
{
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