1
private static bool CanBeUpdateOrDel(bool 是否提交, bool 是否撤回, string 審核狀態) =>
(是否提交, 是否撤回, 審核狀態) switch
{
(false, false, SysCodeConsts.審核狀態_未審核) => true,
(true, false, SysCodeConsts.審核狀態_審核退回) => true,
(true, true, SysCodeConsts.審核狀態_未審核) => true,
(true, true, SysCodeConsts.審核狀態_審核退回) => true,
_ => false,
};