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

添加大厅入住事项

parent d0c80a6d
......@@ -235,4 +235,10 @@ 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="1080x1920" WHERE imageResolution="2";
UPDATE mortals_sys_skin_base SET imageResolution="1280x1280" WHERE imageResolution="3";
\ No newline at end of file
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;
* 站点事项实体对象
*
* @author zxfei
* @date 2024-01-04
* @date 2024-03-09
*/
@Data
public class SiteMatterEntity extends SiteMatterVo {
......@@ -35,6 +35,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 事项名称
*/
private String matterName;
/**
* 事项编码
*/
private String matterCode;
/**
* 部门ID
*/
......@@ -43,10 +47,6 @@ public class SiteMatterEntity extends SiteMatterVo {
* 部门名称
*/
private String deptName;
/**
* 事项编码
*/
private String matterCode;
/**
* 事项类型
*/
......@@ -83,6 +83,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 职务
*/
private String agentPost;
/**
* 大厅事项入驻(0.否,1.是)
*/
private Integer hallCheckIn;
@Override
public int hashCode() {
return this.getId().hashCode();
......@@ -104,9 +108,9 @@ public class SiteMatterEntity extends SiteMatterVo {
this.siteName = "";
this.matterId = null;
this.matterName = "";
this.matterCode = "";
this.deptId = null;
this.deptName = "";
this.matterCode = "";
this.eventTypeShow = "";
this.source = 0;
this.hot = 0;
......@@ -116,5 +120,6 @@ public class SiteMatterEntity extends SiteMatterVo {
this.agentName = "";
this.agentPhone = "";
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