22 lines
521 B
C#
22 lines
521 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_RESOURCEMOBILE_BAK")]
|
|
public partial class RES_RESOURCEMOBILE_BAK
|
|
{
|
|
[Key]
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string MOBILE { get; set; }
|
|
|
|
public decimal? ISMOBILE { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string ENMOBILE { get; set; }
|
|
}
|
|
}
|