23 lines
428 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Syc.Basic.Web.WMS.Dtos.User
{
public class UserInsertDto
{
public string Account { get; set; }
public string Password { get; set; }
public string NickName { get; set; }
public string Email { get; set; }
public string Telephone { get; set; }
public int Creator_Id { get; set; }
}
}