View Javadoc
1   /**
2    * Copyright (c) Glodon Co. Ltd.
3    */
4   package gboat2.base.logging.action;
5   
6   import gboat2.base.core.annotation.Domain;
7   import gboat2.base.core.annotation.Module;
8   import gboat2.base.core.annotation.Operation;
9   import gboat2.base.core.annotation.Operations;
10  import gboat2.base.core.logging.BusinessLogEntry;
11  import gboat2.base.core.web.BaseActionSupport;
12  
13  import org.apache.struts2.convention.annotation.ParentPackage;
14  import org.apache.struts2.convention.annotation.ResultPath;
15  
16  /**
17   * @author zhangxj-a
18   * 业务日志
19   *
20   */
21  @ParentPackage(value = "log")
22  @Domain(value = BusinessLogEntry.class)
23  @ResultPath("/content")
24  @Module(name = "业务日志管理", desc = "业务日志管理")
25  @Operations(value = { @Operation(name = "业务日志详细信息", code = "view") })
26  public class BusinessLogAction extends BaseActionSupport {
27  
28  	/** */
29  	private static final long serialVersionUID = 1L;
30  
31  }