19 lines
439 B
C#
19 lines
439 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_BUSINESS")]
|
|
public partial class BAS_BUSINESS
|
|
{
|
|
[Key]
|
|
public decimal BUSINESSID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string BUSINESSNAME { get; set; }
|
|
|
|
[StringLength(3)]
|
|
public string BUSINESSCODE { get; set; }
|
|
}
|
|
}
|