43 lines
1.0 KiB
C#
43 lines
1.0 KiB
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 EditPointsUserInfoReq
|
||
{
|
||
/// <summary>
|
||
/// 用户id
|
||
///</summary>
|
||
public long Userid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 积分规则id
|
||
///</summary>
|
||
public long RulesId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作类型(0人为、1程序)
|
||
///</summary>
|
||
public int IsAuto { get; set; }
|
||
|
||
/// <summary>
|
||
/// 相关业务id,没有就不传
|
||
/// 默认值:
|
||
///</summary>
|
||
public long? SourceId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 变化积分 可以正数也可以负数
|
||
///</summary>
|
||
public int? ChangePoints { get; set; }
|
||
/// <summary>
|
||
/// 事项名称 RulesId不穿的时候使用这个
|
||
/// </summary>
|
||
public string? DetailName { get; set; }
|
||
}
|
||
}
|