165 lines
4.1 KiB
C#
165 lines
4.1 KiB
C#
|
|
using APT.BaseData.Domain.Enums;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using APT.MS.Domain.Entities.PF;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities.FM
|
|||
|
|
{
|
|||
|
|
[Description("公司级用户调度")]
|
|||
|
|
public partial class T_FM_USER_TRANSFER : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工号
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("工号")]
|
|||
|
|
[DataFieldLength(50)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string CODE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 姓名
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("姓名")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 账套
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("账套")]
|
|||
|
|
public Guid? ORG_ID_NEW { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("用户")]
|
|||
|
|
public Guid USER_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 公司名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("公司名称")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string COMPANYNAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 新部门
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("新部门")]
|
|||
|
|
public Guid? DEPARTMENT_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 新部门
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("新部门")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string DEPARTMENTNAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 新岗位
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("新岗位")]
|
|||
|
|
public Guid? POST_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 新岗位
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("新岗位")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string POSTNAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备注
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("备注")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public string REMARK { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作人
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("操作人")]
|
|||
|
|
[DataFieldLength(50)]
|
|||
|
|
public string USERNAME_TRANSFER { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原账套
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原账套")]
|
|||
|
|
public Guid? ORG_ID_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 公司名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("公司名称")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string COMPANYNAME_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原部门
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原部门")]
|
|||
|
|
public Guid? DEPARTMENT_ID_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原部门
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原部门")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string DEPARTMENTNAME_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原岗位
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原岗位")]
|
|||
|
|
public Guid? POST_ID_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原岗位
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原岗位")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string POSTNAME_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 原用户
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("原用户")]
|
|||
|
|
public Guid USER_ID_OLD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 状态
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("状态")]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public Enums.PF.PFStandardStatus STATUS { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|