22 lines
653 B
C#
22 lines
653 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.QC_COMPLAIN_NOTICE")]
|
|
public class QC_COMPLAIN_NOTICE
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal INNERUSERID { get; set; }
|
|
public decimal EID { get; set; }
|
|
public decimal TYPE { get; set; }
|
|
public string CONTENT { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public decimal ISLOOK { get; set; }
|
|
public DateTime? LOOKTIME { get; set; }
|
|
public decimal COMPLAINID { get; set; }
|
|
}
|
|
}
|