Browse Source

1.短信中枚举添加转义

yuanliang 1 year ago
parent
commit
e5d25251a5

+ 1 - 1
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/service/impl/CooperateTenantServiceImpl.java

@@ -97,7 +97,7 @@ public class CooperateTenantServiceImpl extends ServiceImpl<CooperateTenantMappe
                         receivers, null, 0, null, null,
                         cooperateTenant.getCooperateTenantName(),
                         cooperateTenant.getContacts(),
-                        cooperateTenant.getCooperateTenantNature(),
+                        cooperateTenant.getCooperateTenantNature().getDesc(),
                         cooperateTenant.getPhone()
                 );
             } catch (Exception e) {

+ 1 - 1
cooleshow-user/user-biz/src/main/resources/config/mybatis/CooperateTenantMapper.xml

@@ -33,6 +33,6 @@
                 and #{param.submitEndTime} >= t.create_time_
             </if>
         </where>
-        order by t.id_ desc
+        order by t.update_time_ desc
     </select>
 </mapper>