ComplianceServer/oldcode/Model/Entity/RES_CUSTOMEREXTEND.cs

34 lines
815 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(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; }
}
}