12345678910111213141516171819 |
- using SqlSugar;
-
- namespace Uninpho.DBOperation.Model
- {
- public class User
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public int Id { get; set; }
- public string Name { get; set; }
- public decimal Price { get; set; }
- [SugarColumn(IsNullable = true)]
-
- public int CustomId { get; set; }
-
- }
- }
|