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
    {
        /// 
        /// 员工号
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string Code { get; set; }
        /// 
        /// 部门编码
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string DeptNo { get; set; }
        /// 
        /// 部门名称
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string DeptName { get; set; }
        /// 
        /// 员工名称
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string Name { get; set; }
        /// 
        /// 状态
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public int State { get; set; }
        /// 
        /// 库存组织
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string InvOrgId { get; set; }
        /// 
        /// 类型
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public int Type { get; set; }
        /// 
        /// 操作类型
        /// 
        [PropertyValidate("", NotNullAndEmpty = true)]
        public string OperateType { get; set; }
    }
}