24小时一体机服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
935 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Elight.Entity.SystemModel
{
public class UpdateuserDto
{
/// <summary>
/// 数据编号
/// </summary>
public string? Id { get; set; }
/// <summary>
/// 用户编号
/// </summary>
public string? userId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string? username { get; set; }
/// <summary>
/// true 同意,false 拒绝
/// </summary>
public bool? state { get; set; }
/// <summary>
/// 原因
/// </summary>
public string? reason { get; set; }
/// <summary>
/// 选择时间
/// </summary>
public DateTime? time { get; set; }
}
}