24 lines
582 B
C#
24 lines
582 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
|
|
[Table("UPDEV.BAS_BUSINESSLINES")]
|
|
public class BAS_BUSINESSLINES
|
|
{
|
|
[Key]
|
|
public decimal BUSINESSID { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string BUSINESSNAME { get; set; }
|
|
public int CHANNEL { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public DateTime UTIME { get; set; }
|
|
[StringLength(255)]
|
|
public string COMPANYCODE { get; set; }
|
|
}
|
|
}
|