using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sugar.Enties { /// /// 流程审核经办人部门 /// public class UnitDTO { /// /// 经办部门编码 /// public string UnitCode { get; set; } /// /// 经办部门全名 /// public string FullName { get; set; } /// /// 经办部门所属部门全编码 /// public string FullCode { get; set; } } }