ComplianceServer/oldcode/Model/Entity/BAS_CITY.cs

17 lines
375 B
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_CITY")]
public partial class BAS_CITY
{
public decimal ID { get; set; }
[StringLength(20)]
public string NAME { get; set; }
public decimal? PROVINCEID { get; set; }
}
}