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.
36 lines
644 B
36 lines
644 B
5 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
public class OrgInput : BaseIdInput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构类型
|
||
|
/// </summary>
|
||
|
public string OrgType { get; set; }
|
||
|
}
|
||
|
|
||
|
public class AddOrgInput : SysOrg
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
[Required(ErrorMessage = "机构名称不能为空")]
|
||
|
public override string Name { get; set; }
|
||
|
}
|
||
|
|
||
|
public class UpdateOrgInput : AddOrgInput
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class DeleteOrgInput : BaseIdInput
|
||
|
{
|
||
|
}
|