using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 用户完成任务记录表
///
public partial class UserTaskList
{
public uint Id { get; set; }
public int UserId { get; set; }
public int TaskListId { get; set; }
///
/// 1每日任务 2每周任务
///
public bool Type { get; set; }
///
/// 任务分类 1邀请好友注册 2抽赏任务
///
public bool Cate { get; set; }
///
/// 是否是重要任务 1是 0否
///
public bool? IsImportant { get; set; }
///
/// 需要完成任务几次
///
public int? Number { get; set; }
///
/// 赠送多少欧气值
///
public uint? ZNumber { get; set; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}