31 lines
740 B
C#
31 lines
740 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 备 注:积分规则名称
|
|
/// 默认值:
|
|
///</summary>
|
|
public string RulesName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:变化积分(可正可负)(当时的执行规则的积分)
|
|
/// 默认值:
|
|
///</summary>
|
|
public int ChangePoints { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:发生时间
|
|
/// 默认值:
|
|
///</summary>
|
|
public DateTime AddTime { get; set; }
|
|
}
|
|
}
|