You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace HKLib.Dto
- {
- public class OrgDto
- {
- /// <summary>
- /// 机构名称
- /// </summary>
- public string Name { get; set; }
-
- /// <summary>
- /// 加盟返回的Id
- /// </summary>
- public string SId { get; set; }
- }
- internal class OrgOutDto
- {
- /// <summary>
- /// 机构名称
- /// </summary>
- public string Name { get; set; }
-
- /// <summary>
- /// 加盟返回的Id
- /// </summary>
- public string Id { get; set; }
- }
- }
|