Browse Source

慧播资源权限查询修改

private_deployment
谈文友 1 year ago
parent
commit
1c7b610071
2 changed files with 6 additions and 6 deletions
  1. +3
    -3
      suimangService/src/main/java/com/iformall/domain/po/WxCUserAuthority.java
  2. +3
    -3
      suimangService/src/main/resources/mapper/WxCUserAuthorityMapper.xml

+ 3
- 3
suimangService/src/main/java/com/iformall/domain/po/WxCUserAuthority.java View File

@@ -14,11 +14,11 @@ public class WxCUserAuthority {
@TableField(exist = false)
private String userName;
@TableField(exist = false) //数字人 0 声纹 1
private String type;
private int type;
@TableField(exist = false)
private String resourceId;
@TableField(exist = false) //共享 0 定制 1
private String classType;
//共享 0 定制 1
private int classType;
@TableField(exist = false)
private String currentTime;
@TableField(exist = false)


+ 3
- 3
suimangService/src/main/resources/mapper/WxCUserAuthorityMapper.xml View File

@@ -5,11 +5,11 @@
<resultMap id="BaseResultMap" type="com.iformall.domain.po.WxCUserAuthority">

<result column="user_name" jdbcType="VARCHAR" property="userName"/>
<result column="type" jdbcType="VARCHAR" property="type"/>
<result column="type" jdbcType="INTEGER" property="type"/>
<result column="resource_id" jdbcType="VARCHAR" property="resourceId"/>
<result column="class" jdbcType="VARCHAR" property="classType"/>
<result column="class" jdbcType="INTEGER" property="classType"/>
<result column="expire_time" jdbcType="VARCHAR" property="expireTime"/>
<result column="current_time" jdbcType="VARCHAR" property="expireTime"/>
<result column="current_time" jdbcType="VARCHAR" property="currentTime"/>

</resultMap>
<select id="getAuthorAvatar" resultType="com.iformall.domain.po.WxCUserAuthority">


Loading…
Cancel
Save