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.
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
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 FeedbackInfo {
|
|
|
|
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
|
|
public int Id { 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 = "feedbackID", DbType = "varchar(40)")]
|
|
public string FeedbackID { 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 = "remark", DbType = "varchar(MAX)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "remarkID", DbType = "varchar(40)")]
|
|
public string RemarkID { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "remarkType")]
|
|
public bool? RemarkType { get; set; }
|
|
|
|
}
|
|
|
|
}
|