15 lines
333 B
C#
15 lines
333 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_PROVINCE")]
|
|
public partial class BAS_PROVINCE
|
|
{
|
|
public decimal ID { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string NAME { get; set; }
|
|
}
|
|
}
|