22 lines
376 B
Java
22 lines
376 B
Java
package com.lxyer.model;
|
|
|
|
import com.lxyer.model.base.BaseActLog;
|
|
|
|
/**
|
|
* Generated by JFinal.
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public class ActLog extends BaseActLog<ActLog> {
|
|
public static ActLog dao = new ActLog().dao();
|
|
|
|
@Override
|
|
public String sqlSpace() {
|
|
return "actLog";
|
|
}
|
|
|
|
@Override
|
|
public ActLog getDao() {
|
|
return dao;
|
|
}
|
|
}
|