You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
512 B
Java
28 lines
512 B
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
|
|
import com.rehome.zhdcoa.tree.bean.TreeNodeId;
|
|
import com.rehome.zhdcoa.tree.bean.TreeNodeLabel;
|
|
import com.rehome.zhdcoa.tree.bean.TreeNodePid;
|
|
|
|
public class FileBean
|
|
{
|
|
@TreeNodeId
|
|
private final int _id;
|
|
@TreeNodePid
|
|
private final int parentId;
|
|
@TreeNodeLabel
|
|
private final String name;
|
|
private long length;
|
|
private String desc;
|
|
|
|
public FileBean(int _id, int parentId, String name)
|
|
{
|
|
super();
|
|
this._id = _id;
|
|
this.parentId = parentId;
|
|
this.name = name;
|
|
}
|
|
|
|
}
|