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