33 lines
822 B
C#
33 lines
822 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.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 int UNHANDLEWARN { get; set; }
|
|
public int HANDLEWARN { get; set; }
|
|
public int HGWARN { get; set; }
|
|
}
|
|
}
|