using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; namespace JSWX_Model.SignUp { [Table("T_Logic_Complaint")] public class T_Logic_Complaint { public T_Logic_Complaint() { } [Key] [Column("F_SN")] [Display(Name = "F_SN")] public Guid F_SN { get; set; } [Column("F_CustomerSN")] [Display(Name = "F_CustomerSN")] public Guid F_CustomerSN { get; set; } [Column("F_DeviceNo")] [Display(Name = "F_DeviceNo")] public string F_DeviceNo { get; set; } [Column("F_WXUserSN")] [Display(Name = "F_WXUserSN")] public Guid F_WXUserSN { get; set; } [Column("F_Content")] [Display(Name = "F_Content")] public string F_Content { get; set; } [Column("F_ExportUserName")] [Display(Name = "F_ExportUserName")] public string F_ExportUserName { get; set; } [Column("F_ExportDate")] [Display(Name = "F_ExportDate")] public long F_ExportDate { get; set; } [Column("F_IsExport")] [Display(Name = "F_IsExport")] public int F_IsExport { get; set; } [Column("F_Date")] [Display(Name = "F_Date")] public long F_Date { get; set; } } }