ChargeSet.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package org.dromara.web.domain;
  2. import org.dromara.common.mybatis.core.domain.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.*;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import java.io.Serial;
  7. /**
  8. * 收费设置对象 charge_set
  9. *
  10. * @author Lion Li
  11. * @date 2025-08-04
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @TableName("charge_set")
  16. public class ChargeSet extends BaseEntity {
  17. @Serial
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键id
  21. */
  22. @TableId(value = "charge_id", type = IdType.AUTO)
  23. private Long chargeId;
  24. /**
  25. * 服务商
  26. */
  27. private Long servicer;
  28. /**
  29. * 是否开启现金收费
  30. */
  31. private Long moneyCharge;
  32. /**
  33. * 收费模式
  34. */
  35. private Long chargeMode;
  36. /**
  37. * 收费方式 1单项收费 2 组合收费
  38. */
  39. private Long chargeType;
  40. /**
  41. * 单项收费配置
  42. */
  43. private String oneWayCharge;
  44. /**
  45. * 组合收费配置
  46. */
  47. private String groupCharge;
  48. /**
  49. * 营养配置收费设置
  50. */
  51. private Long nutritionChargeSet;
  52. /**
  53. * 适合处方类型
  54. */
  55. private String suitRecipe;
  56. /**
  57. * 患者订单配置
  58. */
  59. private Long patientOrderSet;
  60. /**
  61. * 订单有效期
  62. */
  63. private Long orderIndate;
  64. /**
  65. * 多模式收费配置
  66. */
  67. private String multiModeCharge;
  68. }