ComplianceServer/oldcode/Core.Model/Entity/Bas_AdChannel.cs

14 lines
307 B
C#

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; }
}
}