OtherFeeDto.java 456 B

12345678910111213141516171819
  1. package com.caimei.modules.order.entity;
  2. import lombok.Data;
  3. @Data
  4. public class OtherFeeDto {
  5. /**
  6. * 采美自营利润(既采美中介费)
  7. */
  8. private Double cmProfit;
  9. /**
  10. * 子订单可用线上支付渠道1微信2支付宝3个人网银4企业网银
  11. */
  12. private String onlinePayWays;
  13. /**
  14. * 线下账户类型 0公账 1私账(线下子订单私账/公账类型)
  15. */
  16. private Integer cmAccountType;
  17. }