소스 검색

1维瓦斯 stopPression: 2

huangxingxing 6 달 전
부모
커밋
3aaf580c32
2개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/resources/templates/mashGas1Control.ftl
  2. 12 0
      src/test/java/com/miniframe/Password.java

+ 1 - 1
src/main/resources/templates/mashGas1Control.ftl

@@ -17,7 +17,7 @@ interactionstep : ${interactionstep}
 ExplosionModel:0
 1Dtotaltime: 10
 1Doutputtime: 0.001
-stopPression: 3
+stopPression: 2
 Number Con:${conNum}
 <#list cons as b>
 ${b.code},${b.diffcoe}

+ 12 - 0
src/test/java/com/miniframe/Password.java

@@ -0,0 +1,12 @@
+package com.miniframe;
+
+import com.miniframe.service.LoginService;
+
+public class Password {
+    public static void main(String[] args) throws Exception {
+        String userId = "f7e927255720489dbfe7d04bc6680946";
+        String password_ ="123456";
+        String pwd =LoginService.encodePassword(userId, password_);
+        System.out.println(pwd);
+    }
+}