ChouBox/ChouBox.Model/Entities/TaskList.cs
2025-04-23 19:20:23 +08:00

54 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 任务表
/// </summary>
public partial class TaskList
{
public uint Id { get; set; }
/// <summary>
/// 任务名称
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 1每日任务 2每周任务
/// </summary>
public bool Type { get; set; }
/// <summary>
/// 任务分类 1邀请好友注册 2抽赏任务
/// </summary>
public bool Cate { get; set; }
/// <summary>
/// 是否是重要任务 1是 0否
/// </summary>
public bool? IsImportant { get; set; }
/// <summary>
/// 需要完成任务几次
/// </summary>
public int? Number { get; set; }
/// <summary>
/// 赠送多少欧气值
/// </summary>
public uint? ZNumber { get; set; }
/// <summary>
/// 排序
/// </summary>
public uint? Sort { get; set; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}