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.
42 lines
1.0 KiB
42 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Wood.Entity;
|
|
using Wood.Entity.SystemManage;
|
|
|
|
namespace Wood.Service.SystemManage.Param
|
|
{
|
|
public class TenantPagedParam : Pagination {
|
|
public string Name { get; set; } = "";
|
|
}
|
|
public class TenantAddParam:TenantEntity
|
|
{
|
|
/// <summary>
|
|
/// 租管账号
|
|
/// </summary>
|
|
[Required(ErrorMessage = "请输入租管账号。")]
|
|
public string UserName { get; set; } = "";
|
|
/// <summary>
|
|
/// 租管账号
|
|
/// </summary>
|
|
[Required(ErrorMessage = "租管姓名。")]
|
|
public string RealName { get; set; } = "";
|
|
/// <summary>
|
|
/// 机构名称
|
|
/// </summary>
|
|
[Required(ErrorMessage = "机构名称。")]
|
|
public string OrgName { get; set; } = "";
|
|
/// <summary>
|
|
/// 机构编码
|
|
/// </summary>
|
|
[Required(ErrorMessage = "机构编码。")]
|
|
public string OrgFormCode { get; set; } = "";
|
|
}
|
|
|
|
public class TenantUpdateParam : TenantEntity
|
|
{
|
|
}
|
|
}
|
|
|