34 lines
816 B
C#
34 lines
816 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_CUSTOMEREXTEND")]
|
|
public partial class RES_CUSTOMEREXTEND
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CUSTOMEREXTENDTYPEID { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string MEMO { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CUSTOMEREXTENDSUBTYPEID { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public decimal? UPDATEUSER { get; set; }
|
|
}
|
|
}
|