|
|
|
@ -4,7 +4,7 @@ import cn.jlw.validate.ValidateConfig;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonAnyGetter;
|
|
|
|
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
|
|
|
|
import com.ibeetl.admin.core.entity.CoreUser;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AutoID;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AssignID;
|
|
|
|
|
import org.beetl.sql.annotation.entity.InsertIgnore;
|
|
|
|
|
import org.beetl.sql.annotation.entity.UpdateIgnore;
|
|
|
|
|
import org.beetl.sql.fetch.annotation.Fetch;
|
|
|
|
@ -23,9 +23,9 @@ public class SysLog extends BaseEntity{
|
|
|
|
|
//主键
|
|
|
|
|
@NotNull(message = "ID不能为空", groups =ValidateConfig.UPDATE.class)
|
|
|
|
|
// @SeqID(name = ORACLE_CORE_SEQ_NAME)
|
|
|
|
|
@AutoID
|
|
|
|
|
@AssignID(value = "maskAutoID",param = "com.ibeetl.jlw.entity.SysLog")
|
|
|
|
|
|
|
|
|
|
private Integer id ;
|
|
|
|
|
private Long id ;
|
|
|
|
|
|
|
|
|
|
//请求方法
|
|
|
|
|
|
|
|
|
@ -86,13 +86,13 @@ public class SysLog extends BaseEntity{
|
|
|
|
|
/**主键
|
|
|
|
|
*@return
|
|
|
|
|
*/
|
|
|
|
|
public Integer getId(){
|
|
|
|
|
public Long getId(){
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
/**主键
|
|
|
|
|
*@param id
|
|
|
|
|
*/
|
|
|
|
|
public void setId(Integer id){
|
|
|
|
|
public void setId(Long id){
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|