using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 任务表
///
public partial class TaskList
{
public uint Id { get; set; }
///
/// 任务名称
///
public string Title { get; set; } = null!;
///
/// 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 uint? Sort { get; set; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}