using SqlSugar; namespace Waste.Domain { /// /// 商户授权信息 /// public class W_BusinessAppApi { /// /// 商户授权信息 /// public W_BusinessAppApi() { } private System.Guid _Id; /// /// 商户的BusinessId /// [SugarColumn(IsPrimaryKey = true)] public System.Guid Id { get { return this._Id; } set { this._Id = value; } } private System.String _PushUrl; /// /// 消息推送地址 /// public System.String PushUrl { get { return this._PushUrl; } set { this._PushUrl = value?.Trim(); } } private System.String _IPList; /// /// IP白名单列表,为空则不限制 /// public System.String IPList { get { return this._IPList; } set { this._IPList = value?.Trim(); } } private System.String _AppId; /// /// /// public System.String AppId { get { return this._AppId; } set { this._AppId = value?.Trim(); } } private System.String _AppSecret; /// /// /// public System.String AppSecret { get { return this._AppSecret; } set { this._AppSecret = value?.Trim(); } } private System.Int32 _Status; /// /// 状态,0-禁用,1-正常 /// public System.Int32 Status { get { return this._Status; } set { this._Status = value; } } private System.DateTime _CreateTime; /// /// 添加时间 /// public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } } }