using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Points
{
public class PointsDetailListRsp
{
///
/// 备 注:积分规则名称
/// 默认值:
///
public string RulesName { get; set; }
///
/// 备 注:变化积分(可正可负)(当时的执行规则的积分)
/// 默认值:
///
public int ChangePoints { get; set; }
///
/// 备 注:发生时间
/// 默认值:
///
public DateTime AddTime { get; set; }
}
}