- 黑名单新增、删除、批量导入、批量移出在配置审批节点后,审批通过才生效 - 新增黑名单待提交后可提交审批;仅首节点未审批时可撤回,进入后续节点禁止撤回 - 增加黑名单审批列表、审批弹窗、审批操作日志及状态筛选 - 支持审批配置中的“黑名单审批”流程及对应菜单、模块权限、操作权限 - 黑名单审批中禁止同名记录覆盖备注;已在黑名单中的同名导入会明确提示本次将修改备注 - 未配置审批节点时保持原有直接生效行为 - 增加黑名单审批状态机单测,39/39 通过 - 修正撤回全部失败时仍提示“撤回审批成功”的问题
19 lines
364 B
C#
19 lines
364 B
C#
using YLErp.Helpers;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 黑名单审批请求。
|
|
/// </summary>
|
|
public class ClientBlackAuditReq
|
|
{
|
|
public string enid { get; set; }
|
|
|
|
public int id => DataProtectHelper.DecryptInt(enid);
|
|
|
|
public string status { get; set; }
|
|
|
|
public string auditComment { get; set; }
|
|
}
|
|
}
|