LlmModel.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.qmth.ops.biz.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.io.Serializable;
  6. @TableName("llm_model")
  7. public class LlmModel implements Serializable {
  8. private static final long serialVersionUID = -5964169705328617643L;
  9. @TableId(type = IdType.AUTO)
  10. private Long id;
  11. private Long supplierId;
  12. private String name;
  13. private Integer qpm;
  14. private Integer tpm;
  15. private Long createTime;
  16. private Long updateTime;
  17. public Long getId() {
  18. return id;
  19. }
  20. public void setId(Long id) {
  21. this.id = id;
  22. }
  23. public Long getSupplierId() {
  24. return supplierId;
  25. }
  26. public void setSupplierId(Long supplierId) {
  27. this.supplierId = supplierId;
  28. }
  29. public String getName() {
  30. return name;
  31. }
  32. public void setName(String name) {
  33. this.name = name;
  34. }
  35. public Integer getQpm() {
  36. return qpm;
  37. }
  38. public void setQpm(Integer qpm) {
  39. this.qpm = qpm;
  40. }
  41. public Integer getTpm() {
  42. return tpm;
  43. }
  44. public void setTpm(Integer tpm) {
  45. this.tpm = tpm;
  46. }
  47. public Long getCreateTime() {
  48. return createTime;
  49. }
  50. public void setCreateTime(Long createTime) {
  51. this.createTime = createTime;
  52. }
  53. public Long getUpdateTime() {
  54. return updateTime;
  55. }
  56. public void setUpdateTime(Long updateTime) {
  57. this.updateTime = updateTime;
  58. }
  59. }