新增支持内嵌套打开网页

This commit is contained in:
WangHao
2020-10-08 14:18:42 +08:00
parent f79ef13ddf
commit d6692f242b
12 changed files with 786 additions and 606 deletions

View File

@ -19,9 +19,9 @@ import java.util.Date;
public class SqMenu
{
private static final long serialVersionUID = 1L;
/** ID */
/** ID 返回自增长主键 */
@Id
@GeneratedValue(generator = "JDBC")//返回自增长主键
@GeneratedValue(generator = "JDBC")
@Column(name = "menu_id")
private Long menuId;