ComplianceServer/oldcode/Model/Entity/BAS_FEEDBACK.cs

28 lines
630 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_FEEDBACK")]
public partial class BAS_FEEDBACK
{
[Key]
public decimal PKID { get; set; }
public string CONTENT { get; set; }
public decimal? INNERUSERID { get; set; }
public decimal? SHOWTYPE { get; set; }
public DateTime? CTIME { get; set; }
public string REPLY { get; set; }
public decimal? REPLYERID { get; set; }
public DateTime? REPLYTIME { get; set; }
}
}