Commit e95bc352 authored by hanfeng's avatar hanfeng

开票

parent c8f1af62
...@@ -3,6 +3,8 @@ package com.xxfc.platform.universal.entity; ...@@ -3,6 +3,8 @@ package com.xxfc.platform.universal.entity;
import lombok.Data; import lombok.Data;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table; import javax.persistence.Table;
import java.util.Date; import java.util.Date;
...@@ -13,6 +15,9 @@ import java.util.Date; ...@@ -13,6 +15,9 @@ import java.util.Date;
@Data @Data
@Table(name = "invoice_query_error") @Table(name = "invoice_query_error")
public class InvoiceQueryError { public class InvoiceQueryError {
@Id
@GeneratedValue(generator ="JDBC" )
private Integer id; private Integer id;
private Integer invoiceId; private Integer invoiceId;
private String invoiceSerialNum; private String invoiceSerialNum;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment