|
@@ -39,10 +39,11 @@ import com.jeesite.common.mybatis.mapper.query.QueryType;
|
|
|
@Column(name="create_date", attrName="createDate", label="创建时间", isUpdate=false, isQuery=false),
|
|
|
@Column(name="update_by", attrName="updateBy", label="更新者", isQuery=false),
|
|
|
@Column(name="update_date", attrName="updateDate", label="更新时间", isQuery=false),
|
|
|
+ @Column(name="flg", attrName="flg", label="是否公共日程", isQuery=false),
|
|
|
}, orderBy="a.update_date DESC"
|
|
|
)
|
|
|
public class Schedule extends DataEntity<Schedule> {
|
|
|
-
|
|
|
+
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
private String fschedulename; // 日程名称
|
|
|
private String fschedulecontent; // 日程内容
|
|
@@ -60,15 +61,24 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
private Long fdeletemark; // 删除标记
|
|
|
private Long fenabledmark; // 有效标志
|
|
|
private String fdescription; // 备注
|
|
|
-
|
|
|
+ private Long flg;
|
|
|
+
|
|
|
+ public Long getFlg() {
|
|
|
+ return flg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlg(Long flg) {
|
|
|
+ this.flg = flg;
|
|
|
+ }
|
|
|
+
|
|
|
public Schedule() {
|
|
|
this(null);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Schedule(String id){
|
|
|
super(id);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=255, message="日程名称长度不能超过 255 个字符")
|
|
|
public String getFschedulename() {
|
|
|
return fschedulename;
|
|
@@ -77,7 +87,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFschedulename(String fschedulename) {
|
|
|
this.fschedulename = fschedulename;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=200, message="日程内容长度不能超过 200 个字符")
|
|
|
public String getFschedulecontent() {
|
|
|
return fschedulecontent;
|
|
@@ -86,7 +96,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFschedulecontent(String fschedulecontent) {
|
|
|
this.fschedulecontent = fschedulecontent;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=50, message="类别长度不能超过 50 个字符")
|
|
|
public String getFcategory() {
|
|
|
return fcategory;
|
|
@@ -95,7 +105,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFcategory(String fcategory) {
|
|
|
this.fcategory = fcategory;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@NotNull(message="开始日期不能为空")
|
|
|
public Date getFstartdate() {
|
|
@@ -105,7 +115,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFstartdate(Date fstartdate) {
|
|
|
this.fstartdate = fstartdate;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=50, message="开始时间长度不能超过 50 个字符")
|
|
|
public String getFstarttime() {
|
|
|
return fstarttime;
|
|
@@ -114,7 +124,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFstarttime(String fstarttime) {
|
|
|
this.fstarttime = fstarttime;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@NotNull(message="结束日期不能为空")
|
|
|
public Date getFenddate() {
|
|
@@ -124,7 +134,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFenddate(Date fenddate) {
|
|
|
this.fenddate = fenddate;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=50, message="结束时间长度不能超过 50 个字符")
|
|
|
public String getFendtime() {
|
|
|
return fendtime;
|
|
@@ -133,7 +143,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFendtime(String fendtime) {
|
|
|
this.fendtime = fendtime;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFearly() {
|
|
|
return fearly;
|
|
|
}
|
|
@@ -141,7 +151,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFearly(Long fearly) {
|
|
|
this.fearly = fearly;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFismailalert() {
|
|
|
return fismailalert;
|
|
|
}
|
|
@@ -149,7 +159,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFismailalert(Long fismailalert) {
|
|
|
this.fismailalert = fismailalert;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFismobilealert() {
|
|
|
return fismobilealert;
|
|
|
}
|
|
@@ -157,7 +167,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFismobilealert(Long fismobilealert) {
|
|
|
this.fismobilealert = fismobilealert;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFiswechatalert() {
|
|
|
return fiswechatalert;
|
|
|
}
|
|
@@ -165,7 +175,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFiswechatalert(Long fiswechatalert) {
|
|
|
this.fiswechatalert = fiswechatalert;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFschedulestate() {
|
|
|
return fschedulestate;
|
|
|
}
|
|
@@ -173,7 +183,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFschedulestate(Long fschedulestate) {
|
|
|
this.fschedulestate = fschedulestate;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFsortcode() {
|
|
|
return fsortcode;
|
|
|
}
|
|
@@ -181,7 +191,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFsortcode(Long fsortcode) {
|
|
|
this.fsortcode = fsortcode;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFdeletemark() {
|
|
|
return fdeletemark;
|
|
|
}
|
|
@@ -189,7 +199,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFdeletemark(Long fdeletemark) {
|
|
|
this.fdeletemark = fdeletemark;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Long getFenabledmark() {
|
|
|
return fenabledmark;
|
|
|
}
|
|
@@ -197,7 +207,7 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFenabledmark(Long fenabledmark) {
|
|
|
this.fenabledmark = fenabledmark;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
@Size(min=0, max=200, message="备注长度不能超过 200 个字符")
|
|
|
public String getFdescription() {
|
|
|
return fdescription;
|
|
@@ -206,5 +216,5 @@ public class Schedule extends DataEntity<Schedule> {
|
|
|
public void setFdescription(String fdescription) {
|
|
|
this.fdescription = fdescription;
|
|
|
}
|
|
|
-
|
|
|
-}
|
|
|
+
|
|
|
+}
|