Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Points/EditPointsUserInfoReq.cs

43 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}