DigitalCertificateSecurityMapStore bugfix
This commit is contained in:
parent
b56ad84ec2
commit
ed6daedece
1 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,9 @@
|
|||
package ru.spcex.clearing.imdg.object;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.classes.statics.data.security.DigitalCertificateSecurity;
|
||||
|
|
@ -8,10 +11,6 @@ import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
|||
import ru.spcex.clearing.imdg.businessobject.ASecurityMapStore;
|
||||
import ru.spcex.platform.utils.time.TimeUtil;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
@Component
|
||||
public class DigitalCertificateSecurityMapStore extends ASecurityMapStore<DigitalCertificateSecurity> {
|
||||
|
||||
|
|
@ -60,6 +59,7 @@ public class DigitalCertificateSecurityMapStore extends ASecurityMapStore<Digita
|
|||
object.setNominalIndexationSign(resultSet.getObject("NOMINAL_INDEXATION_SIGN", String.class));
|
||||
object.setSettlementHouse(resultSet.getObject("SETTLEMENT_HOUSE", String.class));
|
||||
object.setDepository(resultSet.getObject("DEPOSITORY", String.class));
|
||||
fillBySecurity(object, object.getSecurityId());
|
||||
return object;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue