Browse Source

no message

master
lh 7 years ago
parent
commit
8353c9f203
2 changed files with 12 additions and 1 deletions
  1. +3
    -0
      app/src/main/java/com/qhclh/ytzh/home/RpcUrl.java
  2. +9
    -1
      app/src/main/java/com/qhclh/ytzh/work/weighingsingle/WeightInfoActivity.java

+ 3
- 0
app/src/main/java/com/qhclh/ytzh/home/RpcUrl.java View File

@ -113,6 +113,9 @@ public class RpcUrl {
public static String WeightAppList_canshu ="/MainSystem/B3PoultryBreed/Rpcs/RpcObjects/WeighSearchObj";
public static String WeightAppList_fanhui ="/MainSystem/B3PoultryBreed/BO/Weigh";
public static String WeighRpc_load ="/MainSystem/B3PoultryBreed/Rpcs/WeighRpc/Load";
public static String WeighRpc_check ="/MainSystem/B3PoultryBreed/Rpcs/WeighRpc/Check";
}

+ 9
- 1
app/src/main/java/com/qhclh/ytzh/work/weighingsingle/WeightInfoActivity.java View File

@ -18,6 +18,8 @@ public class WeightInfoActivity extends BaseActivity {
Toolbar mToolbar;
@BindView(R.id.tv_toolbar_title)
TextView tv_toolbar_title;
private long id;
@Override
protected int setLayoutId() {
return R.layout.act_weightinfos;
@ -35,11 +37,17 @@ public class WeightInfoActivity extends BaseActivity {
@Override
protected void initData() {
System.out.println("aaa++++id++"+getIntent().getLongExtra("id",0));
id = getIntent().getLongExtra("id",0);
}
@Override
protected void initOper() {
}
@Override
protected void onResume() {
super.onResume();
}
}

Loading…
Cancel
Save