20 lines
577 B
C#
20 lines
577 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.CSVR_CALLRECORD_QC")]
|
|
public class CSVR_CALLRECORD_QC
|
|
{
|
|
[Key]
|
|
public decimal CALLRECORDID { get; set; }
|
|
public string QCTYPE { get; set; }
|
|
public string QCTYPENAME { get; set; }
|
|
public string QCSUBTYPE { get; set; }
|
|
public string QCSUBTYPENAME { get; set; }
|
|
public string QCCONTENT { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|