ComplianceServer/oldcode/Model/Entity/BAS_MOBILEAREA.cs

25 lines
564 B
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_MOBILEAREA")]
public partial class BAS_MOBILEAREA
{
public decimal? PKID { get; set; }
[Key]
[StringLength(50)]
public string NUM { get; set; }
[StringLength(50)]
public string CODE { get; set; }
[StringLength(50)]
public string CITY { get; set; }
[StringLength(50)]
public string CARDTYPE { get; set; }
}
}