Browse Source

Long=>String

dev
liwenxuan 2 years ago
parent
commit
3e7146b62e
  1. 140
      src/main/java/com/hxgk/zxxy/model/entity/Graphicform.java

140
src/main/java/com/hxgk/zxxy/model/entity/Graphicform.java

@ -6,7 +6,7 @@ import org.springframework.stereotype.Repository;
//图文信息表实体类 //图文信息表实体类
public class Graphicform { public class Graphicform {
// //
private Long gId; private String gId;
//标题 //标题
private String gTitle; private String gTitle;
//关键字 //关键字
@ -14,9 +14,9 @@ public class Graphicform {
//描述 //描述
private String gDescribe; private String gDescribe;
//父级 //父级
private Long gParent; private String gParent;
//分类 //分类
private Long gParentSun; private String gParentSun;
//文档来源(1:原创;2:转载) //文档来源(1:原创;2:转载)
private Byte gSource; private Byte gSource;
//转载地址 //转载地址
@ -24,7 +24,7 @@ public class Graphicform {
//缩略图 //缩略图
private String gThumbnail; private String gThumbnail;
//排序 //排序
private Long gSort; private String gSort;
//评论设置(1:允许评论;2:禁止评论) //评论设置(1:允许评论;2:禁止评论)
private Byte gComment; private Byte gComment;
//访问权限(1:公开;2:分厂;3:工段;4:自定义) //访问权限(1:公开;2:分厂;3:工段;4:自定义)
@ -32,17 +32,17 @@ public class Graphicform {
//状态(1:草稿;2:发表;3:下架;4:删除) //状态(1:草稿;2:发表;3:下架;4:删除)
private Byte gState; private Byte gState;
//写入时间 //写入时间
private Long gAddTime; private String gAddTime;
//修改时间 //修改时间
private Long gEiteTime; private String gEiteTime;
//编辑人员 //编辑人员
private Long gUserKey; private String gUserKey;
//分厂 //分厂
private Long gBfId; private String gBfId;
//工段 //工段
private Long gWsId; private String gWsId;
//班组 //班组
private Long gTeam; private String gTeam;
//是否允许下载(1:允许;2:禁止) //是否允许下载(1:允许;2:禁止)
private Byte gDownloadState; private Byte gDownloadState;
//阅读量 //阅读量
@ -74,11 +74,51 @@ public class Graphicform {
//外部链接 //外部链接
private String gOuterLink; private String gOuterLink;
public Long getgId() { @Override
public String toString() {
return "Graphicform{" +
"gId='" + gId + '\'' +
", gTitle='" + gTitle + '\'' +
", gKey='" + gKey + '\'' +
", gDescribe='" + gDescribe + '\'' +
", gParent='" + gParent + '\'' +
", gParentSun='" + gParentSun + '\'' +
", gSource=" + gSource +
", gSourceUrl='" + gSourceUrl + '\'' +
", gThumbnail='" + gThumbnail + '\'' +
", gSort='" + gSort + '\'' +
", gComment=" + gComment +
", gVisitStrat=" + gVisitStrat +
", gState=" + gState +
", gAddTime='" + gAddTime + '\'' +
", gEiteTime='" + gEiteTime + '\'' +
", gUserKey='" + gUserKey + '\'' +
", gBfId='" + gBfId + '\'' +
", gWsId='" + gWsId + '\'' +
", gTeam='" + gTeam + '\'' +
", gDownloadState=" + gDownloadState +
", gRead=" + gRead +
", gComSum=" + gComSum +
", gCollectionSum=" + gCollectionSum +
", gLikes=" + gLikes +
", gRecommend=" + gRecommend +
", gContent='" + gContent + '\'' +
", gStepOn=" + gStepOn +
", gRange='" + gRange + '\'' +
", gWriteBfid=" + gWriteBfid +
", gTextName='" + gTextName + '\'' +
", gTestUrl='" + gTestUrl + '\'' +
", gPhysicsPath='" + gPhysicsPath + '\'' +
", gWriteGroup=" + gWriteGroup +
", gOuterLink='" + gOuterLink + '\'' +
'}';
}
public String getgId() {
return gId; return gId;
} }
public void setgId(Long gId) { public void setgId(String gId) {
this.gId = gId; this.gId = gId;
} }
@ -106,19 +146,19 @@ public class Graphicform {
this.gDescribe = gDescribe; this.gDescribe = gDescribe;
} }
public Long getgParent() { public String getgParent() {
return gParent; return gParent;
} }
public void setgParent(Long gParent) { public void setgParent(String gParent) {
this.gParent = gParent; this.gParent = gParent;
} }
public Long getgParentSun() { public String getgParentSun() {
return gParentSun; return gParentSun;
} }
public void setgParentSun(Long gParentSun) { public void setgParentSun(String gParentSun) {
this.gParentSun = gParentSun; this.gParentSun = gParentSun;
} }
@ -146,11 +186,11 @@ public class Graphicform {
this.gThumbnail = gThumbnail; this.gThumbnail = gThumbnail;
} }
public Long getgSort() { public String getgSort() {
return gSort; return gSort;
} }
public void setgSort(Long gSort) { public void setgSort(String gSort) {
this.gSort = gSort; this.gSort = gSort;
} }
@ -178,51 +218,51 @@ public class Graphicform {
this.gState = gState; this.gState = gState;
} }
public Long getgAddTime() { public String getgAddTime() {
return gAddTime; return gAddTime;
} }
public void setgAddTime(Long gAddTime) { public void setgAddTime(String gAddTime) {
this.gAddTime = gAddTime; this.gAddTime = gAddTime;
} }
public Long getgEiteTime() { public String getgEiteTime() {
return gEiteTime; return gEiteTime;
} }
public void setgEiteTime(Long gEiteTime) { public void setgEiteTime(String gEiteTime) {
this.gEiteTime = gEiteTime; this.gEiteTime = gEiteTime;
} }
public Long getgUserKey() { public String getgUserKey() {
return gUserKey; return gUserKey;
} }
public void setgUserKey(Long gUserKey) { public void setgUserKey(String gUserKey) {
this.gUserKey = gUserKey; this.gUserKey = gUserKey;
} }
public Long getgBfId() { public String getgBfId() {
return gBfId; return gBfId;
} }
public void setgBfId(Long gBfId) { public void setgBfId(String gBfId) {
this.gBfId = gBfId; this.gBfId = gBfId;
} }
public Long getgWsId() { public String getgWsId() {
return gWsId; return gWsId;
} }
public void setgWsId(Long gWsId) { public void setgWsId(String gWsId) {
this.gWsId = gWsId; this.gWsId = gWsId;
} }
public Long getgTeam() { public String getgTeam() {
return gTeam; return gTeam;
} }
public void setgTeam(Long gTeam) { public void setgTeam(String gTeam) {
this.gTeam = gTeam; this.gTeam = gTeam;
} }
@ -345,44 +385,4 @@ public class Graphicform {
public void setgOuterLink(String gOuterLink) { public void setgOuterLink(String gOuterLink) {
this.gOuterLink = gOuterLink; this.gOuterLink = gOuterLink;
} }
@Override
public String toString() {
return "Graphicform{" +
"gId=" + gId +
", gTitle='" + gTitle + '\'' +
", gKey='" + gKey + '\'' +
", gDescribe='" + gDescribe + '\'' +
", gParent=" + gParent +
", gParentSun=" + gParentSun +
", gSource=" + gSource +
", gSourceUrl='" + gSourceUrl + '\'' +
", gThumbnail='" + gThumbnail + '\'' +
", gSort=" + gSort +
", gComment=" + gComment +
", gVisitStrat=" + gVisitStrat +
", gState=" + gState +
", gAddTime=" + gAddTime +
", gEiteTime=" + gEiteTime +
", gUserKey=" + gUserKey +
", gBfId=" + gBfId +
", gWsId=" + gWsId +
", gTeam=" + gTeam +
", gDownloadState=" + gDownloadState +
", gRead=" + gRead +
", gComSum=" + gComSum +
", gCollectionSum=" + gCollectionSum +
", gLikes=" + gLikes +
", gRecommend=" + gRecommend +
", gContent='" + gContent + '\'' +
", gStepOn=" + gStepOn +
", gRange='" + gRange + '\'' +
", gWriteBfid=" + gWriteBfid +
", gTextName='" + gTextName + '\'' +
", gTestUrl='" + gTestUrl + '\'' +
", gPhysicsPath='" + gPhysicsPath + '\'' +
", gWriteGroup=" + gWriteGroup +
", gOuterLink='" + gOuterLink + '\'' +
'}';
}
} }

Loading…
Cancel
Save