123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.qmth.ops.biz.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- @TableName("llm_model")
- public class LlmModel implements Serializable {
- private static final long serialVersionUID = -5964169705328617643L;
- @TableId(type = IdType.AUTO)
- private Long id;
- private Long supplierId;
- private String name;
- private Integer qpm;
- private Integer tpm;
- private Long createTime;
- private Long updateTime;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getSupplierId() {
- return supplierId;
- }
- public void setSupplierId(Long supplierId) {
- this.supplierId = supplierId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Integer getQpm() {
- return qpm;
- }
- public void setQpm(Integer qpm) {
- this.qpm = qpm;
- }
- public Integer getTpm() {
- return tpm;
- }
- public void setTpm(Integer tpm) {
- this.tpm = tpm;
- }
- public Long getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Long createTime) {
- this.createTime = createTime;
- }
- public Long getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Long updateTime) {
- this.updateTime = updateTime;
- }
- }
|