using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("point_send_history")] public class PointSendHistory { /// /// /// public PointSendHistory() { } /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public System.String Id { get; set; } /// /// 任务类型 0:授权送积分 /// [SugarColumn(ColumnName = "task_type")] public System.Int32? TaskType { get; set; } /// /// /// [SugarColumn(ColumnName = "task_id")] public System.String TaskId { get; set; } /// /// /// [SugarColumn(ColumnName = "yz_open_id")] public System.String YzOpenId { get; set; } /// /// /// [SugarColumn(ColumnName = "mobile")] public System.String Mobile { get; set; } /// /// /// [SugarColumn(ColumnName = "send_time")] public System.DateTime? SendTime { get; set; } /// /// /// [SugarColumn(ColumnName = "send_point")] public System.Int32? SendPoint { get; set; } /// /// 是否赠送成功 0否 1是 /// [SugarColumn(ColumnName = "is_send")] public System.Int32? IsSend { get; set; } /// /// /// [SugarColumn(ColumnName = "memo")] public System.String Memo { get; set; } } }