|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Bas_AdChannel
|
|
{
|
|
[Key]
|
|
public string ch { get; set; }
|
|
public string adtype { get; set; }
|
|
public string aduser { get; set; }
|
|
public int chtype { get; set; }
|
|
}
|
|
}
|