using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 获取的订单信息 /// public class OrderInfo { /// /// 订单ID /// public Guid id { get; set; } /// /// 订单内容,为链接或者公众号二维码 /// public string content { get; set; } /// /// 健康码,如果为非认证的号或者个人号,则此项生效,默认支持固定关键字【体重】 /// public string vrcode { get; set; } = ""; /// /// 订单类型,1-公众号,2-链接,3-小程序 /// public OrderType type { get; set; } /// /// 如果大于0,则有错误,参考ErrorInfoDesc /// public int code = 0; /// /// 公众号类型,1-认证的服务号,2-非认证号,3-个人号,4-小程序,参考OfficeType /// public int officetype { get; set; } = 2; /// /// 原始id /// public string appid { get; set; } = ""; /// /// 是否为绑定操作,true-是,false-否 /// public bool isbind { get; set; } = false; /// /// 用户id /// public Guid WxFansId { get; set; } /// /// 昵称 /// public string NickName { get; set; } = "每日一称"; /// /// 头像 /// public string HeadImg { get; set; } = "~/images/logo.png"; } }