Commit d2923001 by 陶然

结构调整

parent 4d3a21f4
......@@ -80,6 +80,10 @@ namespace Kivii.Finances.Entities
[StringLength(50), Default("")]
public string Type { get; set; }
[ApiMember(Description = "结算分类")]
[StringLength(50), Default("")]
public string Category { get; set; }
[ApiMember(Description = "预结算金额")]
[InternalSetter]
[DecimalLength(15, 2), Default(0)]
......@@ -112,6 +116,10 @@ namespace Kivii.Finances.Entities
[Required]
public DateTime OperateTime { get; set; }
[ApiMember(Description = "付款日期")]
[InternalSetter]
public DateTime? PayedTime { get; set; }
[IgnoreUpdate]
[DefaultEmptyGuid]
public Guid OperatorKvid { 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