AddPolicyFeeDTO.java 943 B

123456789101112131415161718192021222324252627
  1. package com.zsElectric.boot.business.model.dto;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import lombok.experimental.Accessors;
  5. import java.math.BigDecimal;
  6. @Schema( description = "新增站点查询策略费用入参")
  7. @Data
  8. @Accessors(chain = true)
  9. public class AddPolicyFeeDTO {
  10. @Schema(description = "时间段")
  11. private String timePeriod;
  12. @Schema(description = "运营服务费(元)")
  13. private BigDecimal operationServiceFee;
  14. @Schema(description = "站点信息ID(关联third_party_station_info表)")
  15. private Long stationInfoId;
  16. @Schema(description = "销售类型(0-平台 1-企业 2-渠道方)")
  17. private Integer salesType;
  18. @Schema(description = "企业ID(销售类型为1时必填)关联c_firm_info")
  19. private Long firmId;
  20. @Schema(description = "渠道方ID(销售类型为2时必填)关联c_third_party_info")
  21. private Long thirdPartyId;
  22. }