namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Post { /// /// Post输入创建对象 /// public class PostCreateInputVo { public bool? State { get; set; } public string PostCode { get; set; } public string PostName { get; set; } public string? Remark { get; set; } } }