ComplianceServer/oldcode/Core.Model/Entity/QC_COMPLAIN_SERVICEMEMO.cs

30 lines
704 B
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("QC_COMPLAIN_SERVICEMEMO")]
public partial class QC_COMPLAIN_SERVICEMEMO
{
[Key]
public decimal PKID { get; set; }
public decimal? COMPLAINID { get; set; }
public string MEMOID { get; set; }
[StringLength(50)]
public string RECOMPLAINLEVEL { get; set; }
public decimal? INNERUSERID { get; set; }
[StringLength(4000)]
public string MEMO { get; set; }
public DateTime? CTIME { get; set; }
public string RECORDID { get; set; }
}
}