15 lines
381 B
Java
15 lines
381 B
Java
package com.cowr.model;
|
|
|
|
import com.cowr.model.base.BaseCustomerPact;
|
|
|
|
/**
|
|
* Generated by COWR Wed Sep 30 15:03:51 CST 2020
|
|
* TableName: customer_pact
|
|
* Remarks: 客户相关 - 签订合同
|
|
* PrimaryKey: id
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public class CustomerPact extends BaseCustomerPact<CustomerPact> {
|
|
public static final CustomerPact dao = new CustomerPact().dao();
|
|
}
|