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