Explorar el Código

修改排序

Signed-off-by: anderx <312518615@qq.com>
anderx hace 5 años
padre
commit
21e7a8f118

+ 1 - 1
src/main/java/com/goafanti/common/mapper/TOrderNewMapper.xml

@@ -1813,7 +1813,7 @@ select a.id, b.contract_no contractNo,a.order_no as orderNo,c.nickname as userNa
   	<if test="tStarTime !=null and tEndTime !=null">
   	and a.start_time between #{tStarTime,jdbcType=VARCHAR} and #{tEndTime,jdbcType=VARCHAR}
   	</if>
-  	order by dun_status,a.create_time desc
+  	order by dun_status,a.start_time desc
   	<if test="page_sql!=null">
 			${page_sql}
 	</if>

+ 1 - 1
src/main/java/com/goafanti/common/utils/PasswordUtil.java

@@ -4,11 +4,11 @@ import java.util.Date;
 
 import org.apache.shiro.crypto.hash.SimpleHash;
 import org.apache.shiro.util.ByteSource;
-
 import com.goafanti.common.model.Admin;
 import com.goafanti.common.model.AftUser;
 import com.goafanti.common.model.User;
 
+
 public class PasswordUtil {
 	private String algorithmName = "md5";
 	private int hashIterations = 2;