| 我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。 ' K) e- u5 {+ o. X$ j' Eis) {8 }+ a8 H. c& K) v* i" ^
 rand:real;
 7 H% I+ N: w' K' f& vdo; B* d1 q! i8 u
 @.serverTime:=Labelpretrial.ProcTime;' i; H, |! ~5 ]4 z2 s2 ]
 rand:=Z_uniform(1,0,1);9 ^& c& F4 ^$ D% }9 S
 if rand>0.0 and rand<=0.15 then
 . q( q1 n/ a9 _# Y+ ^+ \( F                   Labelpretrial.ProcTime:=60*3;5 [1 F: J. m4 l6 g
 elseif rand>0.15 and rand<=0.5 then + ?" v+ ~- i7 l, c6 Z* ~! U
 Labelpretrial.ProcTime:=60*4;
 3 f/ I7 H: X" ]& }+ m           elseif rand>0.5 and rand<=0.8 then
 1 Q. q, ^' D' Y, R                   Labelpretrial.ProcTime:=60*5;
 5 B" n; {  e" z- V           elseif rand>0.8 and rand<=0.95 then 7 y8 x" z/ i* \# k& h
 Labelpretrial.ProcTime:=60*6;
 q7 l& ]5 t. p& S( y           elseif rand>0.95 and rand<=1 then
 0 L4 T( n  @$ M( i9 R" P                   Labelpretrial.ProcTime:=60*7;
 2 h. l4 q; L; V0 z8 ~3 z
 2 t% X. }: S) y8 Y8 P2 y9 P% Q) h+ ^       end;
 . u) i+ p) ?" send;
 + K' @) m# O% w+ ^4 q+ u系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办?
 |