using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DocumentServiceAPI.Application.DocManage.Dtos { public class Classification_Submit_Dto { public int id { get; set; } public string name { get; set; } /// /// 父级编码 /// public string code { get; set; } public int status { get; set; } } }