|
@@ -1,8 +1,9 @@
|
|
package com.qmth.sop.business.entity;
|
|
package com.qmth.sop.business.entity;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
-import com.qmth.sop.common.base.BaseEntity;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
@@ -17,10 +18,14 @@ import java.io.Serializable;
|
|
* @since 2023-07-17
|
|
* @since 2023-07-17
|
|
*/
|
|
*/
|
|
@ApiModel(value="TDTableProp对象", description="表格属性表")
|
|
@ApiModel(value="TDTableProp对象", description="表格属性表")
|
|
-public class TDTableProp extends BaseEntity implements Serializable {
|
|
|
|
|
|
+public class TDTableProp implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
|
+ private Long id;
|
|
|
|
+
|
|
@ApiModelProperty(value = "控件id")
|
|
@ApiModelProperty(value = "控件id")
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
private Long widgetId;
|
|
private Long widgetId;
|
|
@@ -71,6 +76,38 @@ public class TDTableProp extends BaseEntity implements Serializable {
|
|
@ApiModelProperty(value = "子标题")
|
|
@ApiModelProperty(value = "子标题")
|
|
private String subTitle;
|
|
private String subTitle;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
|
+ private Long createId;
|
|
|
|
+
|
|
|
|
+ @TableField(value = "create_time", fill = FieldFill.INSERT)//新增执行
|
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
|
+ private Long createTime;
|
|
|
|
+
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getCreateId() {
|
|
|
|
+ return createId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateId(Long createId) {
|
|
|
|
+ this.createId = createId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getCreateTime() {
|
|
|
|
+ return createTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateTime(Long createTime) {
|
|
|
|
+ this.createTime = createTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getSubTitle() {
|
|
public String getSubTitle() {
|
|
return subTitle;
|
|
return subTitle;
|
|
}
|
|
}
|