- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class DepartmentView
- {
- public System.Guid? dpkey { get; set; }
- public string dpname { get; set; }
- public string dpid { get; set; }
- public string parentdpid { get; set; }
- }
- }
|