24 lines
460 B
C#
24 lines
460 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS.Dtos.Role
|
|||
|
{
|
|||
|
public class RoleDto
|
|||
|
{
|
|||
|
public string trans { get; set; }
|
|||
|
|
|||
|
public string code { get; set; }
|
|||
|
|
|||
|
public bool status { get; set; }
|
|||
|
|
|||
|
public string remark { get; set; }
|
|||
|
|
|||
|
public string sort { get; set; }
|
|||
|
|
|||
|
public DateTime createdAt { get; set; }
|
|||
|
}
|
|||
|
}
|