You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.5 KiB
C#

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