Sys_DepartmentView.cs 335 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.ViewModels.System
  7. {
  8. public class Sys_DepartmentView
  9. {
  10. public int Id { get; set; }
  11. public string DepName { get; set; }
  12. public string a { get; set; }
  13. }
  14. }