97 lines
2.1 KiB
C#
97 lines
2.1 KiB
C#
|
|
using APT.Infrastructure.Api;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities
|
|||
|
|
{
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|||
|
|
public partial class T_PF_APPROVE : MesEntityBase
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD>̱<EFBFBD><CCB1><EFBFBD>")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[DataFieldLength(20)]
|
|||
|
|
public string CODE { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[DataFieldLength(50)]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[DataFieldLength(10)]
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|||
|
|
public string APPROVE_CODE { get; set; }
|
|||
|
|
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD>ID")]
|
|||
|
|
public Guid DATA_ID { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD>״̬")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[EnumName("ApproveStatus")]
|
|||
|
|
public int APPROVE_STATUS { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///Get<65>ӿڣ<D3BF><DAA3>践<EFBFBD><E8B7B5>bool<6F><6C><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("<22>ص<EFBFBD><D8B5>ӿ<EFBFBD>")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
public string CALLBACK_INTERFACE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><>ǰ<EFBFBD>ڵ<EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public T_PF_APPROVE_DETAIL CurrentNode { get; set; }
|
|||
|
|
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD>ӱ<EFBFBD>")]
|
|||
|
|
public ICollection<T_PF_APPROVE_DETAIL> Nav_ApproveDetails { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><>ǰ<EFBFBD>ڵ<EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public bool IS_SEND_MESSAGE { get; set; }
|
|||
|
|
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldLength(200)]
|
|||
|
|
[Description("<22>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|||
|
|
public string PARAM { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20>Ƿ<EFBFBD>ȡ<EFBFBD><C8A1>
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("<22>Ƿ<EFBFBD>ȡ<EFBFBD><C8A1>")]
|
|||
|
|
public bool ISCANCEL { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ID")]
|
|||
|
|
public Guid? APPROVE_TEMP_ID { get; set; }
|
|||
|
|
|
|||
|
|
[Description("<22><><EFBFBD>ؽӿ<D8BD>")]
|
|||
|
|
[DataFieldIngore]
|
|||
|
|
public string REJECT_INTERFACE { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|