30 lines
708 B
C#
30 lines
708 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.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; }
|
|
}
|
|
}
|