diff --git a/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysLogininfor.java b/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysLogininfor.java
index 08513198..a05a7564 100644
--- a/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysLogininfor.java
+++ b/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysLogininfor.java
@@ -23,6 +23,18 @@ public class SysLogininfor extends BaseEntity
@Excel(name = "用户账号")
private String userName;
+ /** 用户昵称 */
+ @Excel(name = "用户昵称")
+ private String nickName;
+
+ public String getNickName() {
+ return nickName;
+ }
+
+ public void setNickName(String nickName) {
+ this.nickName = nickName;
+ }
+
/** 状态 0成功 1失败 */
@Excel(name = "状态", readConverterExp = "0=成功,1=失败")
private String status;
diff --git a/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysOperLog.java b/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysOperLog.java
index e2fb7a96..126e37ce 100644
--- a/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysOperLog.java
+++ b/sgzb-api/sgzb-api-system/src/main/java/com/bonus/sgzb/system/api/domain/SysOperLog.java
@@ -46,6 +46,10 @@ public class SysOperLog extends BaseEntity
@Excel(name = "操作人员")
private String operName;
+ /** 用户昵称 */
+ @Excel(name = "用户昵称")
+ private String nickName;
+
/** 部门名称 */
@Excel(name = "部门名称")
private String deptName;
@@ -112,7 +116,13 @@ public class SysOperLog extends BaseEntity
{
this.businessType = businessType;
}
+ public String getNickName() {
+ return nickName;
+ }
+ public void setNickName(String nickName) {
+ this.nickName = nickName;
+ }
public Integer[] getBusinessTypes()
{
return businessTypes;
diff --git a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/AgreementInfo.java b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/AgreementInfo.java
index 38c5763a..c29c443d 100644
--- a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/AgreementInfo.java
+++ b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/AgreementInfo.java
@@ -91,4 +91,8 @@ public class AgreementInfo extends BaseEntity {
@ApiModelProperty(value = "备注")
private String remark;
+ /** 协议类型 */
+ @Excel(name = "协议类型")
+ @ApiModelProperty(value = "协议类型(1内部单位 2外部单位)")
+ private Integer protocol;
}
diff --git a/sgzb-modules/sgzb-material/src/main/resources/mapper/material/AgreementInfoMapper.xml b/sgzb-modules/sgzb-material/src/main/resources/mapper/material/AgreementInfoMapper.xml
index 598bdb14..c21e5675 100644
--- a/sgzb-modules/sgzb-material/src/main/resources/mapper/material/AgreementInfoMapper.xml
+++ b/sgzb-modules/sgzb-material/src/main/resources/mapper/material/AgreementInfoMapper.xml
@@ -21,6 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
@@ -40,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
auth_person,
phone,
update_by,
+ protocol,
update_time,
remark,
company_id,
@@ -59,6 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{authPerson},
#{phone},
#{updateBy},
+ #{protocol},
NOW(),
#{remark},
#{companyId},
@@ -85,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
+ protocol = #{protocol},
company_id = #{companyId},
file_name = #{fileName},
file_url = #{fileUrl},
@@ -99,7 +103,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
diff --git a/sgzb-modules/sgzb-system/src/main/resources/mapper/system/SysOperLogMapper.xml b/sgzb-modules/sgzb-system/src/main/resources/mapper/system/SysOperLogMapper.xml
index f7c691b4..149f4822 100644
--- a/sgzb-modules/sgzb-system/src/main/resources/mapper/system/SysOperLogMapper.xml
+++ b/sgzb-modules/sgzb-system/src/main/resources/mapper/system/SysOperLogMapper.xml
@@ -12,6 +12,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
@@ -34,34 +35,35 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"