2025-08-25 09:56:57 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|
|
|
|
|
public partial class T_PF_APPROVE : MesEntityBase
|
2025-08-25 09:56:57 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[Description("<22><><EFBFBD>̱<EFBFBD><CCB1><EFBFBD>")]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[DataFieldLength(20)]
|
|
|
|
|
|
public string CODE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
|
|
|
|
|
|
/// </summary>
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[DataFieldLength(50)]
|
|
|
|
|
|
public string NAME { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[DataFieldLength(10)]
|
|
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|
|
|
|
|
public string APPROVE_CODE { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD>ID")]
|
|
|
|
|
|
public Guid DATA_ID { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD>״̬")]
|
|
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[FormFieldQuery]
|
|
|
|
|
|
[FormFieldTable]
|
|
|
|
|
|
[EnumName("ApproveStatus")]
|
2025-08-25 09:56:57 +08:00
|
|
|
|
public int APPROVE_STATUS { get; set; }
|
|
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
/// <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; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20><>ǰ<EFBFBD>ڵ<EFBFBD>
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataFieldIngore]
|
|
|
|
|
|
public T_PF_APPROVE_DETAIL CurrentNode { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[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; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20><>ǰ<EFBFBD>ڵ<EFBFBD>
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataFieldIngore]
|
|
|
|
|
|
public bool IS_SEND_MESSAGE { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[FormFieldEdit]
|
|
|
|
|
|
[DataFieldLength(200)]
|
|
|
|
|
|
[Description("<22>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")]
|
|
|
|
|
|
public string PARAM { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20>Ƿ<EFBFBD>ȡ<EFBFBD><C8A1>
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("<22>Ƿ<EFBFBD>ȡ<EFBFBD><C8A1>")]
|
|
|
|
|
|
public bool ISCANCEL { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
|
|
|
|
|
|
[Description("<22><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ID")]
|
|
|
|
|
|
public Guid? APPROVE_TEMP_ID { get; set; }
|
|
|
|
|
|
|
2025-10-24 11:47:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20><><EFBFBD>ؽӿ<D8BD>
|
|
|
|
|
|
/// </summary>
|
2025-08-25 09:56:57 +08:00
|
|
|
|
[Description("<22><><EFBFBD>ؽӿ<D8BD>")]
|
2025-10-24 11:47:37 +08:00
|
|
|
|
[DataFieldLength(100)]
|
|
|
|
|
|
public string REJECT_INTERFACE { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|