You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1002 B
Java
37 lines
1002 B
Java
package com.mfsys.uco.dto;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class CashInTransactionRequest {
|
|
private String porOrgacode;
|
|
private String pctCstycode;
|
|
private String channelCode;
|
|
private String cmpCustcode;
|
|
private String drMbmBkmsnumber;
|
|
private String drMbmBkmstitle;
|
|
private String drPcrCurrcode;
|
|
private String drPcrCurrdesc;
|
|
private String drPcrCurrshort;
|
|
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;
|
|
}
|