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.
108 lines
3.3 KiB
C#
108 lines
3.3 KiB
C#
3 years ago
|
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(DisableSyncStructure = true)]
|
||
|
public partial class Feedback {
|
||
|
|
||
|
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "acceptanceDate")]
|
||
|
public DateTime? AcceptanceDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "acceptanceMaster", DbType = "varchar(20)")]
|
||
|
public string AcceptanceMaster { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "acceptanceSuggestion", DbType = "varchar(MAX)")]
|
||
|
public string AcceptanceSuggestion { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "action", DbType = "varchar(16)")]
|
||
|
public string Action { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "beginDate")]
|
||
|
public DateTime? BeginDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "companyID", DbType = "varchar(100)")]
|
||
|
public string CompanyID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "completeDate")]
|
||
|
public DateTime? CompleteDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "createDate")]
|
||
|
public DateTime? CreateDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "creater", DbType = "varchar(20)")]
|
||
|
public string Creater { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "department", DbType = "varchar(40)")]
|
||
|
public string Department { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "email", DbType = "varchar(100)")]
|
||
|
public string Email { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "endDate")]
|
||
|
public DateTime? EndDate { 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")]
|
||
|
public int? FeedbackType { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "isDelete")]
|
||
|
public bool? IsDelete { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "isSend")]
|
||
|
public bool? IsSend { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "isTop")]
|
||
|
public bool? IsTop { 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)")]
|
||
|
public string ModifyUser { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "priority", DbType = "varchar(20)")]
|
||
|
public string Priority { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "productName", DbType = "varchar(100)")]
|
||
|
public string ProductName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "project", DbType = "varchar(40)")]
|
||
|
public string Project { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "qq", DbType = "varchar(20)")]
|
||
|
public string Qq { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "satisfaction", DbType = "varchar(50)")]
|
||
|
public string Satisfaction { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "status")]
|
||
|
public int? Status { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "telephone", DbType = "varchar(20)")]
|
||
|
public string Telephone { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public int? USERTYPE { get; set; } = 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|