25 lines
585 B
C#
25 lines
585 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_IMPORTRES_DETAIL")]
|
|
public partial class RES_IMPORTRES_DETAIL
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal IMPORTID { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(255)]
|
|
public string MOBILE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string ENMOBILE { get; set; }
|
|
}
|
|
}
|