123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos
- {
- public class Sys_DepartmentDto
- {
- /// <summary>
- /// 公司Id
- /// </summary>
- public int CompanyId { get; set; }
- }
- }
|