29 lines
668 B
C#
29 lines
668 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_RELATIONCUSTOMER")]
|
|
public partial class CSVR_RELATIONCUSTOMER
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(18)]
|
|
public string RELATIONRESID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string MEMO { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|