using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("appset")] public class Appset { /// /// /// public Appset() { } /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public System.String Id { get; set; } /// /// 1688token /// [SugarColumn(ColumnName = "alibaba_token")] public System.String AlibabaToken { get; set; } /// /// 有赞token /// [SugarColumn(ColumnName = "yz_token")] public System.String YzToken { get; set; } /// /// 有赞店铺id /// [SugarColumn(ColumnName = "yz_shopid")] public System.String YzShopid { get; set; } /// /// 有赞token过期时间 /// [SugarColumn(ColumnName = "yz_token_expires")] public System.DateTime? YzTokenExpires { get; set; } /// /// 有赞刷新令牌 /// [SugarColumn(ColumnName = "yz_refresh_token")] public System.String YzRefreshToken { get; set; } /// /// 有赞运费模板id /// [SugarColumn(ColumnName = "yz_post_mould")] public System.String YzPostMould { get; set; } [SugarColumn(ColumnName = "wx_next_cursor")] public System.String WxNextCursor { get; set; } /// /// 分销微信小程序token /// [SugarColumn(ColumnName = "fx_wx_token")] public System.String FxWxToken { get; set; } /// /// 小程序token过期时间 /// [SugarColumn(ColumnName = "fx_wx_token_expires")] public System.DateTime? FxWxTokenExpires { get; set; } } }