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.
42 lines
982 B
42 lines
982 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> |
|
/// 1 同意,2 拒绝 3结束 |
|
/// </summary> |
|
|
|
public int? state { get; set; } |
|
|
|
/// <summary> |
|
/// 原因 |
|
/// </summary> |
|
public string? reason { get; set; } |
|
|
|
/// <summary> |
|
/// 选择时间 |
|
/// </summary> |
|
public DateTime? time { get; set; } |
|
|
|
public int? Type { get; set; } |
|
} |
|
}
|
|
|