using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "VW_Feedback_Info", DisableSyncStructure = true)] public partial class VWFeedbackInfo { [JsonProperty, Column(Name = "action", DbType = "varchar(100)", IsNullable = false)] public string Action { get; set; } [JsonProperty, Column(Name = "beginDate")] public DateTime? BeginDate { get; set; } [JsonProperty, Column(Name = "companyID", DbType = "varchar(20)", IsNullable = false)] public string CompanyID { get; set; } [JsonProperty, Column(Name = "expense", DbType = "decimal(18,2)")] public decimal? Expense { get; set; } [JsonProperty, Column(Name = "feedbackID", DbType = "varchar(40)")] public string FeedbackID { get; set; } [JsonProperty, Column(Name = "feedbackType", DbType = "varchar(100)", IsNullable = false)] public string FeedbackType { get; set; } [JsonProperty, Column(Name = "id", IsIdentity = true)] public int Id { get; set; } [JsonProperty, Column(Name = "isDelete")] public bool? IsDelete { get; set; } [JsonProperty, Column(Name = "master", DbType = "varchar(40)")] public string Master { get; set; } [JsonProperty, Column(Name = "modifyDate")] public DateTime ModifyDate { get; set; } [JsonProperty, Column(Name = "modifyUser", DbType = "varchar(20)", IsNullable = false)] public string ModifyUser { get; set; } [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string MODIFYUSERGID { get; set; } [JsonProperty, Column(Name = "project", DbType = "varchar(100)", IsNullable = false)] public string Project { get; set; } [JsonProperty, Column(Name = "remark", DbType = "varchar(MAX)", IsNullable = false)] public string Remark { get; set; } [JsonProperty, Column(Name = "remark_hf", DbType = "varchar(MAX)", IsNullable = false)] public string RemarkHf { get; set; } [JsonProperty, Column(Name = "remarkID", DbType = "varchar(40)", IsNullable = false)] public string RemarkID { get; set; } [JsonProperty, Column(Name = "remarkID_hf", DbType = "varchar(40)", IsNullable = false)] public string RemarkIDHf { get; set; } [JsonProperty, Column(Name = "status", DbType = "varchar(100)", IsNullable = false)] public string Status { get; set; } [JsonProperty, Column(DbType = "varchar(30)", IsNullable = false)] public string STLNAME { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string USERTYPE { get; set; } } }