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; } } }