24 lines
624 B
C#
24 lines
624 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.RES_CUSTOMER_RELATION")]
|
|
public partial class RES_CUSTOMER_RELATION
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public int DEPTID { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string DEPTNAME { get; set; }
|
|
|
|
public int? GROUPID { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
public DateTime? UTIME { get; set; }
|
|
}
|
|
} |