DepartmentView.cs 358 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
  5. {
  6. public class DepartmentView
  7. {
  8. public System.Guid? dpkey { get; set; }
  9. public string dpname { get; set; }
  10. public string dpid { get; set; }
  11. public string parentdpid { get; set; }
  12. }
  13. }