27 lines
616 B
C#
27 lines
616 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_VIPCUSTOMER")]
|
|
public partial class RES_VIPCUSTOMER
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string MOBILE { get; set; }
|
|
|
|
public decimal? SCHEDULESTATUS { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string REASON { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string RESID { get; set; }
|
|
}
|
|
}
|