20 lines
391 B
C#
20 lines
391 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 ABConst
|
|
{
|
|
/// <summary>
|
|
/// 安邦小程序appid
|
|
/// </summary>
|
|
public const string MiniAppId = "wx1a19cd30a8223f6f";
|
|
}
|
|
}
|