mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-05 21:27:58 +08:00
15 lines
294 B
C#
15 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.Model
|
|
{
|
|
public class T_User2
|
|
{
|
|
[SqlSugar.SugarColumn(DefaultValue ="0",ColumnDescription ="aaa")]
|
|
public int num { get; set; }
|
|
}
|
|
}
|