NewGaoKaoApi/New_College.Model/ViewModels/UserSettingBaseRequest.cs

47 lines
981 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Model.ViewModels
{
public class UserSettingBaseRequest
{
public int CustomerId { get; set; }
}
public class UserBaseSettingUpdateDTO
{
public int CustomerId { get; set; }
/// <summary>
/// 0分数修改次数|1查询次数
/// </summary>
public int UType { get; set; }
}
public class UserBaseSettingDto
{
public int CustomerId { get; set; }
/// <summary>
/// 0-pc,1-minpro
/// </summary>
public int PType { get; set; }
/// <summary>
/// 分数修改次数
/// </summary>
public int ScoreCount { get; set; }
/// <summary>
/// 功能查询次数
/// </summary>
public int SearchCount { get; set; }
public int ShowCount { get; set; }
}
}