Parcourir la source

Merge branch 'photo' of https://git.malls.iformall.com/suimang/suimangServer into photo

private_deployment
xhxu il y a 1 an
Parent
révision
0b1a5478cf
2 fichiers modifiés avec 6 ajouts et 6 suppressions
  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 Voir le fichier

@@ -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 Voir le fichier

@@ -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">


Chargement…
Annuler
Enregistrer