Commit 40fb0534 by jianan

出账检核-增加币种35

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