liuyu
昨天 93c133349a5ccd7a328371fa113dce69d5611f21
1
2
3
4
5
6
7
8
export const ELECTRONIC_SIGNATURE_MODEL_ID = '817377076427378629';
export const REVIEW_SIGNATURE_MODEL_ID = '834058863564102341';
 
const electronicSignatureModelIds = new Set([ELECTRONIC_SIGNATURE_MODEL_ID, REVIEW_SIGNATURE_MODEL_ID]);
 
export function isElectronicSignatureModelId(modelId: string) {
  return electronicSignatureModelIds.has(modelId);
}