19 lines
517 B
C#
19 lines
517 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.BAS_BUSINESSCHANNEL")]
|
|
public class BAS_BUSINESSCHANNEL
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public decimal BUSINESSID { get; set; }
|
|
public int MINCHANNEL { get; set; }
|
|
public int MAXCHANNEL { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public DateTime UTIME { get; set; }
|
|
}
|
|
}
|