新增备注列表
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 产品知识点;
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class Information {
|
||||
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String content;
|
||||
|
||||
private String type;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
/**
|
||||
* 附件
|
||||
*/
|
||||
private String attachment;
|
||||
}
|
||||
Reference in New Issue
Block a user