using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.Attributes;
|
|
namespace WIDESEA_DTO.ERP
|
{
|
[ModelValidate()]
|
public class UserInfoDTO
|
{
|
/// <summary>
|
/// 员工号
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 部门编码
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string DeptNo { get; set; }
|
|
/// <summary>
|
/// 部门名称
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string DeptName { get; set; }
|
|
/// <summary>
|
/// 员工名称
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 状态
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public int State { get; set; }
|
|
/// <summary>
|
/// 库存组织
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string InvOrgId { get; set; }
|
|
/// <summary>
|
/// 类型
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public int Type { get; set; }
|
|
/// <summary>
|
/// 操作类型
|
/// </summary>
|
[PropertyValidate("", NotNullAndEmpty = true)]
|
public string OperateType { get; set; }
|
}
|
}
|