complete controllers

This commit is contained in:
2023-05-25 14:41:03 +08:00
parent 1400fcdeb4
commit 3b5bd291f9
13 changed files with 664 additions and 56 deletions

View File

@ -65,6 +65,12 @@ public class FlowerItem
[Column("photo")]
public byte[]? Photo { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("memo")]
public string? Memo { get; set; }
/// <summary>
/// 购买时间
/// </summary>

View File

@ -58,6 +58,12 @@ public class RecordItem
[Column("photo")]
public byte[]? Photo { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("memo")]
public string? Memo { get; set; }
/// <summary>
/// 操作时间
/// </summary>

View File

@ -77,6 +77,13 @@ public class UserItem
[Column("mobile")]
public string? Mobile { get; set; }
/// <summary>
/// 用户头像
/// </summary>
[Column("avatar")]
[JsonIgnore]
public byte[]? Avatar { get; set; }
/// <summary>
/// 注册时间
/// </summary>