23 lines
428 B
C#
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|