commit add money done
parent
653ad3f3c1
commit
444215580f
@ -0,0 +1,33 @@
|
|||||||
|
package com.mfsys.uco.dto;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GLAccontTranasctionRequestModel {
|
||||||
|
private String porOrgacode;
|
||||||
|
private String pctCstycode;
|
||||||
|
private String channelCode;
|
||||||
|
private String cmpCustcode;
|
||||||
|
private String drPcaGlaccode;
|
||||||
|
private String drPcaGlacdesc;
|
||||||
|
private String crMbmBkmsnumber;
|
||||||
|
private String crMbmBkmstitle;
|
||||||
|
private String crPcrCurrcode;
|
||||||
|
private String crPcrCurrdesc;
|
||||||
|
private String crPcrCurrshort;
|
||||||
|
private String sgtGntrnarration;
|
||||||
|
private String dmpProdCode;
|
||||||
|
private String transType;
|
||||||
|
private String notificationId;
|
||||||
|
private String transMode;
|
||||||
|
private double sgtGntramtfc;
|
||||||
|
private String otdTrancomment;
|
||||||
|
private String obpPincode;
|
||||||
|
private String pinType;
|
||||||
|
}
|
||||||
@ -0,0 +1,52 @@
|
|||||||
|
package com.mfsys.uco.model;
|
||||||
|
|
||||||
|
import com.mfsys.comm.util.FieldNameLength;
|
||||||
|
import jakarta.persistence.*;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
@Entity(name = "BN_MS_GA_UCOGENERALTRANSACTIONTRAIL")
|
||||||
|
@Table(name = "BN_MS_GA_UCOGENERAALTRANSACTIONTRAIL")
|
||||||
|
public class GLAccountMasterTransaction {
|
||||||
|
|
||||||
|
@Column(name = "POR_ORGACODE", nullable = false, updatable = false, columnDefinition = FieldNameLength.POR_ORGACODE)
|
||||||
|
protected String porOrgacode;
|
||||||
|
@Column(name = "DR_PCA_GLACODE", nullable = false, updatable = false, columnDefinition = FieldNameLength.ACCOUNT_NUMBER)
|
||||||
|
protected String drPcaGlaccode;
|
||||||
|
@Column(name = "CR_MBM_BKMSNUMBER", nullable = false, updatable = false, columnDefinition = FieldNameLength.ACCOUNT_NUMBER)
|
||||||
|
protected String crMbmBkmsnumber;
|
||||||
|
@Column(name = "DMP_PRODCODE", nullable = false, updatable = false, columnDefinition = FieldNameLength.DMP_PRODCODE)
|
||||||
|
protected String dmpProdcode;
|
||||||
|
@Column(name = "DR_PCA_GLADESC", nullable = false, updatable = true, columnDefinition = FieldNameLength.ACCOUNT_TITLE)
|
||||||
|
protected String drPcaGlacdesc;
|
||||||
|
@Column(name = "CMP_CUSTCODE", nullable = false, updatable = false, columnDefinition = FieldNameLength.CUSTOMER_CODE)
|
||||||
|
protected String cmpCustcode;
|
||||||
|
@Column(name = "CR_MBM_BKMSTITLE", nullable = false, updatable = true, columnDefinition = FieldNameLength.ACCOUNT_TITLE)
|
||||||
|
protected String crMbmBkmstitle;
|
||||||
|
@Column(name = "SGT_SENTGNTRNUMBER", nullable = false, updatable = false, columnDefinition = FieldNameLength.CODE_500)
|
||||||
|
protected String sgtSentGntrnumber;
|
||||||
|
@Column(name = "DR_SGT_GNTRDATE", nullable = false, updatable = false, columnDefinition = FieldNameLength.DATE)
|
||||||
|
protected LocalDate drSgtGntrdate;
|
||||||
|
@Column(name = "SGT_GNTRAMT", nullable = false, updatable = false, columnDefinition = FieldNameLength.AMOUNT_REAL)
|
||||||
|
protected BigDecimal sgtGntramt = BigDecimal.ZERO;
|
||||||
|
@Column(name = "DR_SGT_GNTRAMT", nullable = false, updatable = false, columnDefinition = FieldNameLength.AMOUNT_REAL)
|
||||||
|
protected BigDecimal drSgtGntramt = BigDecimal.ZERO;
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
private Long id;
|
||||||
|
@Column(name = "CR_PCR_CURRSHORT", nullable = false, columnDefinition = FieldNameLength.DESCRIPTION_LONG)
|
||||||
|
private String crPcrCurrshort;
|
||||||
|
@Column(name = "CR_PCR_CURRDESC", nullable = false, columnDefinition = FieldNameLength.DESCRIPTION_LONG)
|
||||||
|
private String crPcrCurrdesc;
|
||||||
|
@Column(name = "CR_PCR_CURRCODE", columnDefinition = FieldNameLength.PCR_CURRCODE)
|
||||||
|
private String crPcrCurrcode;
|
||||||
|
}
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
package com.mfsys.uco.repository;
|
||||||
|
|
||||||
|
import com.mfsys.uco.model.GLAccountMasterTransaction;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface GLAccountMasterTransactionTrailRepository extends JpaRepository<GLAccountMasterTransaction, Integer> {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue