33 lines
813 B
C#
33 lines
813 B
C#
namespace CRM.Core.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("RES_CUSTOMEREXTEND")]
|
|
public partial class RES_CUSTOMEREXTEND
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(18)]
|
|
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; }
|
|
}
|
|
} |