Commit 680464c1 authored by 赵啸非's avatar 赵啸非

添加大厅入住事项

parent d0c80a6d
...@@ -236,3 +236,9 @@ ALTER TABLE mortals_sys_site_matter ADD COLUMN `agentPost` varchar(64) CO ...@@ -236,3 +236,9 @@ ALTER TABLE mortals_sys_site_matter ADD COLUMN `agentPost` varchar(64) CO
UPDATE mortals_sys_skin_base SET imageResolution="1920x1080" WHERE imageResolution="1"; UPDATE mortals_sys_skin_base SET imageResolution="1920x1080" WHERE imageResolution="1";
UPDATE mortals_sys_skin_base SET imageResolution="1080x1920" WHERE imageResolution="2"; UPDATE mortals_sys_skin_base SET imageResolution="1080x1920" WHERE imageResolution="2";
UPDATE mortals_sys_skin_base SET imageResolution="1280x1280" WHERE imageResolution="3"; UPDATE mortals_sys_skin_base SET imageResolution="1280x1280" WHERE imageResolution="3";
-- ----------------------------
2024-03-08
-- ----------------------------
ALTER TABLE mortals_sys_site_matter ADD COLUMN `hallCheckIn` tinyint(2) DEFAULT '0' COMMENT '大厅事项入驻(0.否,1.是)' AFTER agentPost;
...@@ -13,7 +13,7 @@ import lombok.Data; ...@@ -13,7 +13,7 @@ import lombok.Data;
* 站点事项实体对象 * 站点事项实体对象
* *
* @author zxfei * @author zxfei
* @date 2024-01-04 * @date 2024-03-09
*/ */
@Data @Data
public class SiteMatterEntity extends SiteMatterVo { public class SiteMatterEntity extends SiteMatterVo {
...@@ -35,6 +35,10 @@ public class SiteMatterEntity extends SiteMatterVo { ...@@ -35,6 +35,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 事项名称 * 事项名称
*/ */
private String matterName; private String matterName;
/**
* 事项编码
*/
private String matterCode;
/** /**
* 部门ID * 部门ID
*/ */
...@@ -43,10 +47,6 @@ public class SiteMatterEntity extends SiteMatterVo { ...@@ -43,10 +47,6 @@ public class SiteMatterEntity extends SiteMatterVo {
* 部门名称 * 部门名称
*/ */
private String deptName; private String deptName;
/**
* 事项编码
*/
private String matterCode;
/** /**
* 事项类型 * 事项类型
*/ */
...@@ -83,6 +83,10 @@ public class SiteMatterEntity extends SiteMatterVo { ...@@ -83,6 +83,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 职务 * 职务
*/ */
private String agentPost; private String agentPost;
/**
* 大厅事项入驻(0.否,1.是)
*/
private Integer hallCheckIn;
@Override @Override
public int hashCode() { public int hashCode() {
return this.getId().hashCode(); return this.getId().hashCode();
...@@ -104,9 +108,9 @@ public class SiteMatterEntity extends SiteMatterVo { ...@@ -104,9 +108,9 @@ public class SiteMatterEntity extends SiteMatterVo {
this.siteName = ""; this.siteName = "";
this.matterId = null; this.matterId = null;
this.matterName = ""; this.matterName = "";
this.matterCode = "";
this.deptId = null; this.deptId = null;
this.deptName = ""; this.deptName = "";
this.matterCode = "";
this.eventTypeShow = ""; this.eventTypeShow = "";
this.source = 0; this.source = 0;
this.hot = 0; this.hot = 0;
...@@ -116,5 +120,6 @@ public class SiteMatterEntity extends SiteMatterVo { ...@@ -116,5 +120,6 @@ public class SiteMatterEntity extends SiteMatterVo {
this.agentName = ""; this.agentName = "";
this.agentPhone = ""; this.agentPhone = "";
this.agentPost = ""; this.agentPost = "";
this.hallCheckIn = 0;
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment