Browse Source

代码修改

chenweida 7 years ago
parent
commit
e58b7593e7

+ 1 - 1
svr/svr-manage/readme.MD

@ -1,4 +1,4 @@
登陆页面
http://localhost:8080/login/login.jsp
localhost:8081/login/login.html
默认用户
admin 123456

+ 1 - 1
svr/svr-manage/src/main/java/com/yihu/jw/manage/model/IdEntity.java

@ -27,7 +27,7 @@ public abstract class IdEntity implements Serializable {
	protected Long id;  // 非业务主键
	@Id
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	@GeneratedValue(strategy = GenerationType.AUTO)
	public Long getId() {
		return id;
	}

+ 0 - 3
svr/svr-manage/src/main/java/com/yihu/jw/manage/model/login/ManageLoginLog.java

@ -6,9 +6,6 @@ import java.sql.Timestamp;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Id;
import javax.persistence.Table;
/**