22 lines
484 B
C#
22 lines
484 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_IDMAP")]
|
|
public partial class CSVR_IDMAP
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string CUSTOMERID { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|