2025-06-16 17:24:23 +08:00

23 lines
428 B
C#

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