Commit 96673f33 by zhanghou

修改了getMsg的方法

parent dfd948cf
......@@ -1324,9 +1324,9 @@ public abstract class AbstractMx2MtTagsGenerate implements Mx2MtTagsGenerate {
return "202";
}else if(mtType.startsWith("pacs.010")){
return "204";
}else if(mtType.matches("/MT10[0-9]{1}/")){
}else if(mtType.matches("MT10[0-9]{1}")){
return mtType.substring(2);
}else if(mtType.matches("/MT20[0-9]{1}/")){
}else if(mtType.matches("MT20[0-9]{1}")){
return mtType.substring(2);
}else {
return "202";
......
package com.brilliance.mx2mt.mt950;
import com.brilliance.swift.constants.Mx2MtConstants;
import com.brilliance.swift.mx2mt.Mx2MtCreatorManager;
import org.apache.commons.io.FileUtils;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment