using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SnapshotWinFormsApp.Entities.OldHotline; [SugarTable("Flow16_PubIdea")] public class Flow16_PubIdeaEntity : OldBaseEntity { [SugarColumn(ColumnName = "FPIA_IdeaID")] public override string Id { get => base.Id; set => base.Id = value; } //public string FPIA_IdeaID { get; set; } public string FPIA_FlowID { get; set; } public string FPIA_PubID { get; set; } public string FPIA_Title { get; set; } public string FPIA_Content { get; set; } public string FPIA_Result { get; set; } public string FPIA_ZGZFW_PubState { get; set; } public string FPIA_ZGZFW_Reason { get; set; } public string FPIA_ZGZFW_Phone { get; set; } public string FPIA_CONTACTFLAG { get; set; } public string FPIA_ASSESSFLAG { get; set; } public string FPIA_ASSESSOPINION { get; set; } public string FPIA_ASSESSCONTENT { get; set; } public string FPIA_NOTES { get; set; } }