update comments
This commit is contained in:
parent
9935c8b67f
commit
d83284d650
|
@ -6,28 +6,28 @@ public class ApiDoc {
|
|||
|
||||
/**
|
||||
* @since 1.7+
|
||||
* 文档顺序
|
||||
* Order of controller
|
||||
*/
|
||||
public int order;
|
||||
|
||||
/**
|
||||
* 类名
|
||||
* controller name
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* @since 1.7+
|
||||
* md5加密后的文件名(用于处理html)
|
||||
* controller alias handled by md5
|
||||
*/
|
||||
private String alias;
|
||||
|
||||
/**
|
||||
* 方法文档列表
|
||||
* List of method doc
|
||||
*/
|
||||
private List<ApiMethodDoc> list;
|
||||
|
||||
/**
|
||||
* 类注解描述
|
||||
* method description
|
||||
*/
|
||||
private String desc;
|
||||
|
||||
|
|
|
@ -8,27 +8,27 @@ package com.power.doc.model;
|
|||
public class RevisionLog {
|
||||
|
||||
/**
|
||||
* 修订版本
|
||||
* version
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
* status
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 作者
|
||||
* author
|
||||
*/
|
||||
private String author;
|
||||
|
||||
/**
|
||||
* 修订时间
|
||||
* update time
|
||||
*/
|
||||
private String revisionTime;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
* description
|
||||
*/
|
||||
private String remarks;
|
||||
|
||||
|
|
Loading…
Reference in New Issue