15 lines
384 B
Java
15 lines
384 B
Java
|
|
package com.cowr.model;
|
||
|
|
|
||
|
|
import com.cowr.model.base.BasePrepayDetail;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Generated by COWR Sun Apr 12 21:56:10 CST 2020
|
||
|
|
* TableName: prepay_detail
|
||
|
|
* Remarks: 客户相关 - 客户预付费
|
||
|
|
* PrimaryKey: id
|
||
|
|
*/
|
||
|
|
@SuppressWarnings("serial")
|
||
|
|
public class PrepayDetail extends BasePrepayDetail<PrepayDetail> {
|
||
|
|
public static final PrepayDetail dao = new PrepayDetail().dao();
|
||
|
|
}
|