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.
29 lines
554 B
29 lines
554 B
6 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
public class UserExtOrgInput : BaseIdInput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 机构Id
|
||
|
/// </summary>
|
||
|
public long OrgId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 职位Id
|
||
|
/// </summary>
|
||
|
public long PosId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工号
|
||
|
/// </summary>
|
||
|
public string JobNum { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 职级
|
||
|
/// </summary>
|
||
|
public string PosLevel { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 入职日期
|
||
|
/// </summary>
|
||
|
public DateTime? JoinDate { get; set; }
|
||
|
}
|