24 lines
504 B
C#
24 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 公众号列表
|
|
/// </summary>
|
|
public class OfficialListModel:YB_OfficlaAccount
|
|
{
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string BusinessName { get; set; }
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
public int BusinessId { get;set; }
|
|
}
|
|
}
|