using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("product_filter")] public class ProductFilter { /// /// /// public ProductFilter() { } /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public System.String Id { get; set; } /// /// 关键词 /// [SugarColumn(ColumnName = "key_word")] public System.String KeyWord { get; set; } /// /// 被替换内容 /// [SugarColumn(ColumnName = "replace")] public System.String Replace { get; set; } } }