OrderCost.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package com.kcim.dao.model;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableLogic;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import com.fasterxml.jackson.annotation.JsonIgnore;
  9. import lombok.AllArgsConstructor;
  10. import lombok.Data;
  11. import lombok.NoArgsConstructor;
  12. import lombok.experimental.Accessors;
  13. /**
  14. * 医嘱项目成本计算表
  15. *
  16. * @author Wang.YS
  17. * @date 2023-11-22 11:02:32
  18. */
  19. @Data
  20. @Accessors(chain = true)
  21. @AllArgsConstructor
  22. @NoArgsConstructor
  23. @TableName("compute_order_cost")
  24. public class OrderCost implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. /**
  27. * 主键
  28. */
  29. @TableId
  30. private Integer id;
  31. /**
  32. * 医院id
  33. */
  34. private Long hospId;
  35. /**
  36. * 核算年月
  37. */
  38. private String computeDate;
  39. /**
  40. * 医嘱项目代码
  41. */
  42. private String code;
  43. /**
  44. * 医嘱项目名称
  45. */
  46. private String name;
  47. /**
  48. * 科室代码
  49. */
  50. private String departmentCode;
  51. /**
  52. * 科室名称
  53. */
  54. private String departmentName;
  55. /**
  56. * 创建人
  57. */
  58. @JsonIgnore
  59. private String createUser;
  60. /**
  61. * 创建时间
  62. */
  63. @JsonIgnore
  64. private Date createTime;
  65. /**
  66. * 更新人
  67. */
  68. @JsonIgnore
  69. private String updateUser;
  70. /**
  71. * 更新时间
  72. */
  73. @JsonIgnore
  74. private Date updateTime;
  75. /**
  76. * 删除人
  77. */
  78. @JsonIgnore
  79. private String deleteUser;
  80. /**
  81. * 删除时间
  82. */
  83. @JsonIgnore
  84. private Date deleteTime;
  85. /**
  86. * 删除标志 0正常 1作废
  87. */
  88. @JsonIgnore
  89. @TableLogic(value = "0",delval = "1")
  90. private Integer delFlag;
  91. @TableField(exist = false)
  92. private Integer index;
  93. }