Mysql创建表时,增加字段注释。

This commit is contained in:
zhouyx
2022-10-16 15:06:50 +08:00
parent 42e736b874
commit 807aec33a8
2 changed files with 6 additions and 1 deletions

View File

@@ -11,8 +11,9 @@ namespace OrmTest
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(ColumnDescription ="名称")]
public string Name { get; set; }
[SugarColumn(ColumnDescription = "价格")]
public decimal Price { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime CreateTime { get; set; }