935090232@qq.com
2021-10-23 13cbb37d5a38ae764fbe78063de4af61511b33e2
zq-erp/src/main/java/com/matrix/system/common/bean/SysFunction.java
@@ -1,9 +1,9 @@
package com.matrix.system.common.bean;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
@@ -12,10 +12,19 @@
 * @email 935090232@qq.com
 * @date 2017年12月3日
 */
public class SysFunction extends EntityDTO {
public class SysFunction  {
   @Extend
   private static final long serialVersionUID = 1L;
   private String createBy;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone="GMT+8")
   private Date createTime;
   private String updateBy;
   private Date updateTime;
   private Long fnId;
@@ -203,4 +212,39 @@
      this.fnCode = fnCode;
   }
   public String getCreateBy() {
      return createBy;
   }
   public void setCreateBy(String createBy) {
      this.createBy = createBy;
   }
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
   public String getUpdateBy() {
      return updateBy;
   }
   public void setUpdateBy(String updateBy) {
      this.updateBy = updateBy;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public boolean isHasThisFn() {
      return hasThisFn;
   }
}