using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("sh_product")] public class sh_product { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// /// [SugarColumn(ColumnName="module_id" )] public int? module_id { get; set; } /// /// /// [SugarColumn(ColumnName="productname" )] public string productname { get; set; } =""; /// /// /// [SugarColumn(ColumnName="course" )] public string course { get; set; } =""; /// /// /// [SugarColumn(ColumnName="refno" )] public string refno { get; set; } =""; } }