using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 签到配置表 /// public partial class SignConfig { public int Id { get; set; } /// /// 配置类型(1:累计签到配置,2:每日签到配置) /// public bool Type { get; set; } /// /// 指定星期几(type=2时有效,1-7代表周一到周日) /// public bool? Day { get; set; } /// /// 配置标题 /// public string? Title { get; set; } /// /// 图标 /// public string? Icon { get; set; } /// /// 状态(0禁用,1启用) /// public bool? Status { get; set; } /// /// 排序 /// public int? Sort { get; set; } public int? CreateTime { get; set; } public int? UpdateTime { get; set; } /// /// 奖励id /// public string RewardId { get; set; } = null!; /// /// 备注 /// public string? Description { get; set; } }