26 lines
603 B
C#
26 lines
603 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_CALLOUTCUSTOMER")]
|
|
public partial class RES_CALLOUTCUSTOMER
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string CALLOUTTYPE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string REASON { get; set; }
|
|
}
|
|
}
|