Commit a0dcb313 by hexikun

库存盘点添加创建人名称

parent 4fbd0a71
......@@ -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; }
}
}
......@@ -24,7 +24,7 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5000"
"applicationUrl": "http://localhost:5002"
},
"Docker": {
"commandName": "Docker",
......
......@@ -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; }
}
}
......@@ -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; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment