using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.dbcrm { /// /// /// [SugarTable("t_product")] public class TProduct { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public string id { get; set; } /// /// /// [SugarColumn(ColumnName = "groupid")] public int groupid { get; set; } } }