1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.ssj.service.isbn.entity;
- import com.ssj.bean.common.framework.core.domain.BaseEntity;
- import javax.persistence.Entity;
- import javax.persistence.Table;
- import java.io.Serializable;
- /**
- * @author sh
- * @className TbBookOcrData
- * @description 记录调用ocr返回信息
- * @date 2023/3/1
- */
- @Entity
- @Table(name="tb_book_ocr_data")
- public class TbBookOcrData extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 练习册id
- */
- private String bookId;
- /**
- * 练习册返回的json
- */
- private String orcJson;
- public String getBookId() {
- return bookId;
- }
- public void setBookId(String bookId) {
- this.bookId = bookId;
- }
- public String getOrcJson() {
- return orcJson;
- }
- public void setOrcJson(String orcJson) {
- this.orcJson = orcJson;
- }
- }
|