提交 01392f61 编写于 作者: O o2null

Merge branch 'feature/应用市场优化' into 'develop'

【应用市场】应用市场优化

See merge request o2oa/o2oa!1666

(cherry picked from commit c367a34f)

fbe56520 增加应用描述字段
上级 84620c3c
......@@ -74,6 +74,14 @@ public class Application extends SliceJpaObject {
@CheckPersist(allowEmpty = true)
private Double price;
public static final String describe_FIELDNAME = "describe";
@FieldDescribe("描述.必填")
@Lob
@Basic(fetch = FetchType.EAGER)
@Column(length = JpaObject.length_1K, name = ColumnNamePrefix + describe_FIELDNAME)
@CheckPersist(allowEmpty = true)
private String describe;
public static final String abort_FIELDNAME = "abort";
@FieldDescribe("应用简介")
@Lob
......@@ -274,4 +282,12 @@ public class Application extends SliceJpaObject {
public void setCommentCount(Integer commentCount) {
this.commentCount = commentCount;
}
public String getDescribe() {
return describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册