🐛 修复自定义 JS, CSS 超出数据库长度无法保存的 BUG.

This commit is contained in:
zhaojun1998
2020-05-13 21:51:27 +08:00
parent 04e3023071
commit bcae9713bc

View File

@@ -7,6 +7,7 @@ import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Lob;
/**
* @author zhaojun
@@ -22,6 +23,7 @@ public class SystemConfig {
@Column(name = "k")
private String key;
@Lob
private String value;
private String remark;