using System; using System.Linq; using System.Text; using SqlSugar; namespace Tiobon.Core.Model.Models { /// /// /// [SugarTable("WeChatQR")] public partial class WeChatQR { /// /// 主键id,ticket /// [SugarColumn(Length = 200, IsPrimaryKey = true, IsNullable = false)] public string QRticket { get; set; } /// /// 需要绑定的公司 /// [SugarColumn(Length = 100, IsNullable = false)] public string QRbindCompanyID { get; set; } /// /// 需要绑定的员工id /// [SugarColumn(Length = 100, IsNullable = false)] public string QRbindJobID { get; set; } /// /// 需要绑定的员工昵称 /// [SugarColumn(Length = 100, IsNullable = true)] public string QRbindJobNick { get; set; } /// /// 创建时间 /// public DateTime QRcrateTime { get; set; } /// /// 关联的公众号 /// [SugarColumn(Length = 100, IsNullable = false)] public string QRpublicAccount { get; set; } /// /// 是否已使用 /// public bool QRisUsed { get; set; } /// /// 使用时间 /// [SugarColumn(IsNullable = true)] public DateTime? QRuseTime { get; set; } /// /// 关联的微信用户id /// [SugarColumn(Length = 100, IsNullable = true)] public string QRuseOpenid { get; set; } /// /// 创建者id /// [SugarColumn(IsNullable = true)] public int? CreateId { get; set; } /// /// 创建人 /// [SugarColumn(IsNullable = true)] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime? CreateTime { get; set; } /// /// 修改者id /// [SugarColumn(IsNullable = true)] public int? ModifyId { get; set; } /// /// 修改人 /// [SugarColumn(IsNullable = true)] public string ModifyBy { get; set; } /// /// 修改时间 /// [SugarColumn(IsNullable = true)] public DateTime? ModifyTime { get; set; } } }