15 lines
373 B
Java
15 lines
373 B
Java
|
|
package com.cowr.model;
|
||
|
|
|
||
|
|
import com.cowr.model.base.BaseInvoiceLog;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Generated by COWR Thu Aug 13 22:45:03 CST 2020
|
||
|
|
* TableName: invoice_log
|
||
|
|
* Remarks: 发票管理 - 发票使用记录
|
||
|
|
* PrimaryKey: id
|
||
|
|
*/
|
||
|
|
@SuppressWarnings("serial")
|
||
|
|
public class InvoiceLog extends BaseInvoiceLog<InvoiceLog> {
|
||
|
|
public static final InvoiceLog dao = new InvoiceLog().dao();
|
||
|
|
}
|