ComplianceServer/oldcode/Model/Entity/BAS_CASE.cs

19 lines
539 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_CASE")]
public class BAS_CASE
{
[Key]
public decimal ID { get; set; }
public string QUESTION { get; set; }
public string ANSWER { get; set; }
public DateTime CTIME { get; set; }
public decimal CATEGORYID { get; set; }
public decimal CREATEEID { get; set; }
public decimal SORT { get; set; }
}
}