using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SnapshotWinFormsApp.Entities.OldHotline; public class Flow_Set01_Store : OldBaseEntity { [SugarColumn(ColumnName = "FSL_StoreID")] public override string Id { get => base.Id; set => base.Id = value; } //public string FSL_StoreID { get; set; } public string FSL_Code { get; set; } public string FSL_Name { get; set; } public string FSL_EncodeKey { get; set; } public string FSL_CompayID { get; set; } public string FSL_CompayName { get; set; } public string FSL_DelFlag { get; set; } public string FSL_Remark { get; set; } public string FSL_Width { get; set; } public string FSL_Height { get; set; } public string FSL_SysFlag { get; set; } }