Commit 40fb0534 by jianan

出账检核-增加币种35

parent 5bd4f4cd
......@@ -9,17 +9,17 @@ import java.math.BigDecimal;
@Data
public class ExpectedFortuneUpdateRequest {
@Schema(description = "预计发佣业务id")
@Schema(description = "预计发佣业务id", requiredMode = Schema.RequiredMode.REQUIRED)
private String expectedFortuneBizId;
@Schema(description = "应付款类型 R-关联保单应付款 U-非关联保单应付款")
@Schema(description = "应付款类型 R-关联保单应付款 U-非关联保单应付款", requiredMode = Schema.RequiredMode.REQUIRED)
private String fortuneBizType;
@Schema(description = "出账年月 (估)")
@Schema(description = "出账年月 (估)", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonFormat(pattern = "yyyy-MM", timezone = "GMT+8")
private String payoutDate;
@Schema(description = "出账年月 (实)")
@Schema(description = "出账年月 (实)", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonFormat(pattern = "yyyy-MM", timezone = "GMT+8")
private String actualPayoutDate;
......@@ -36,28 +36,25 @@ public class ExpectedFortuneUpdateRequest {
// private String statusDesc;
@Schema(description = "出账项目")
@Schema(description = "出账项目", requiredMode = Schema.RequiredMode.REQUIRED)
private String fortuneName;
@Schema(description = "出账项目类型 字典值:csf_fortune_type")
@Schema(description = "出账项目类型 字典值:csf_fortune_type", requiredMode = Schema.RequiredMode.REQUIRED)
private String fortuneType;
@Schema(description = "出账期数")
@Schema(description = "出账期数", requiredMode = Schema.RequiredMode.REQUIRED)
private Integer fortunePeriod;
@Schema(description = "出账总期数")
@Schema(description = "出账总期数", requiredMode = Schema.RequiredMode.REQUIRED)
private Integer fortuneTotalPeriod;
@Schema(description = "币种")
private String currency;
@Schema(description = "转介人名称")
@Schema(description = "转介人名称", requiredMode = Schema.RequiredMode.REQUIRED)
private String broker;
@Schema(description = "broker biz id")
@Schema(description = "broker biz id", requiredMode = Schema.RequiredMode.REQUIRED)
private String brokerBizId;
@Schema(description = "所属团队", requiredMode = Schema.RequiredMode.REQUIRED)
@Schema(description = "所属团队")
private String team;
@Schema(description = "所属团队业务ID")
......
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