using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace LearningOfficer.OA.Core.Entities.OA.UserPoints { /// /// 积分规则表 /// [SugarTable("points_rules")] public class PointsRules : BaseEntity { /// /// 备 注:积分规则名称 /// 默认值: /// [SugarColumn(ColumnName = "rules_name" )] public string RulesName { get; set; } = null!; /// /// 备 注:分值(可正可负) /// 默认值: /// [SugarColumn(ColumnName = "score" )] public int Score { get; set; } /// /// 备 注:添加时间 /// 默认值: /// [SugarColumn(ColumnName = "add_time" )] public DateTime AddTime { get; set; } /// /// 备 注:添加人 /// 默认值: /// [SugarColumn(ColumnName = "add_userid" )] public long AddUserid { get; set; } } }