|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.dg
|
|
{
|
|
[Table("t_sms_channel")]
|
|
public class Sms_Channel
|
|
{
|
|
public int id { get; set; }
|
|
public string channel_name { get; set; }
|
|
}
|
|
}
|