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

48 lines
996 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 用户完成任务记录表
/// </summary>
public partial class UserTaskList
{
public uint Id { get; set; }
public int UserId { get; set; }
public int TaskListId { get; set; }
/// <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; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}