Sys_DepartmentDto.cs 356 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos
  8. {
  9. public class Sys_DepartmentDto
  10. {
  11. /// <summary>
  12. /// 公司Id
  13. /// </summary>
  14. public int CompanyId { get; set; }
  15. }
  16. }