Commit 00234c6c by jianglong

修改FxdBizInfo.java

parent 749a4f19
...@@ -48,4 +48,8 @@ public class FxdBizInfoVo extends BizInfoVo { ...@@ -48,4 +48,8 @@ public class FxdBizInfoVo extends BizInfoVo {
private String trdout = NULLSTR; private String trdout = NULLSTR;
private String swtflg = NULLSTR; private String swtflg = NULLSTR;
private String cancur = NULLSTR;
private BigDecimal canamt = BigDecimal.ZERO;
} }
...@@ -62,7 +62,7 @@ public class PtsptaToolComponent { ...@@ -62,7 +62,7 @@ public class PtsptaToolComponent {
private PtsptaMapper ptsptaMapper; private PtsptaMapper ptsptaMapper;
public boolean IsDemestic(PtsptaVo ptsptaVo){ public boolean IsDemestic(PtsptaVo ptsptaVo){
if ("CN".equals(ptsptaVo.getAdr().getLoccty())) { if (ptsptaVo.getAdr() !=null && "CN".equals(ptsptaVo.getAdr().getLoccty())) {
return true; return true;
} else{ } else{
return false; return false;
......
...@@ -40,6 +40,8 @@ public interface SetmodService { ...@@ -40,6 +40,8 @@ public interface SetmodService {
String getGllRol(String argrol); String getGllRol(String argrol);
void setglgAllValDat ( SetmodVo setmodVo, Date argValdat , String argFlag );
//获取币种的节假日,目前前端组件已实现,后端使用isHoliday方法 //获取币种的节假日,目前前端组件已实现,后端使用isHoliday方法
@Deprecated @Deprecated
String getCurCal(String inCur); String getCurCal(String inCur);
......
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