using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FrmPrint { [SugarTable("T_BD_ProductInfo")] public class TBDProductInfo { [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public string ID { get; set; } [SugarColumn(ColumnName = "ProductID")] public string ProductID { get; set; } [SugarColumn(ColumnName = "ProductName")] public string ProductName { get; set; } [SugarColumn(ColumnName = "ProductCode")] public string ProductCode { get; set; } [SugarColumn(ColumnName = "ProductType")] public string ProductType { get; set; } [SugarColumn(ColumnName = "ShopID")] public string ShopID { get; set; } [SugarColumn(ColumnName = "HasA")] public string HasA { get; set; } [SugarColumn(ColumnName = "HasDate")] public string HasDate { get; set; } [SugarColumn(ColumnName = "MPTemplate")] public string MPTemplate { get; set; } [SugarColumn(ColumnName = "TMTemplate")] public string TMTemplate { get; set; } [SugarColumn(ColumnName = "PrintType")] public string PrintType { get; set; } [SugarColumn(ColumnName = "CodeType")] public string CodeType { get; set; } [SugarColumn(ColumnName = "Prefix")] public string Prefix { get; set; } [SugarColumn(ColumnName = "Suffix")] public string Suffix { get; set; } } }