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

36 lines
836 B
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("QC_COMPLAINTDICT")]
public partial class QC_COMPLAINTDICT
{
[Key]
public decimal PKID { get; set; }
[StringLength(50)]
public string BUSINESSDESC { get; set; }
[StringLength(50)]
public string DICTCODE { get; set; }
[StringLength(50)]
public string DICTVALUE { get; set; }
[StringLength(50)]
public string DICTDESC { get; set; }
public DateTime? CTIME { get; set; }
public decimal? ORD { get; set; }
public decimal? UNHANDLEWARN { get; set; }
public decimal? HANDLEWARN { get; set; }
public decimal? HGWARN { get; set; }
}
}