skyouc
7 天以前 455950c1d7ca4406c9b7ff60eb30f5d4cc4ece8e
rsf-server/src/main/java/com/vincent/rsf/server/system/entity/Fields.java
@@ -4,6 +4,8 @@
import java.text.SimpleDateFormat;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -21,6 +23,7 @@
@Data
@TableName("sys_fields")
@ApiModel(value = "Fields", description = "动态字段")
public class Fields implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -58,6 +61,9 @@
    @ApiModelProperty(value= "是否启用 0:  不启用   1:  启用  ")
    private Short flagEnable;
    @ApiModelProperty("数据类型")
    private String varType;
    /**
     * 状态 1: 正常  0: 冻结  
     */
@@ -68,7 +74,6 @@
     * 是否删除 1: 是  0: 否  
     */
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**
@@ -88,6 +93,7 @@
     */
    @ApiModelProperty(value= "添加时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date createTime;
    /**
@@ -101,6 +107,7 @@
     */
    @ApiModelProperty(value= "修改时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
    /**