16 lines
227 B
Java
16 lines
227 B
Java
package com.xscm.moduleutil.bean;
|
|
|
|
public class CheckTxtResp {
|
|
|
|
|
|
private int result;
|
|
|
|
public int getResult() {
|
|
return result;
|
|
}
|
|
|
|
public void setResult(int result) {
|
|
this.result = result;
|
|
}
|
|
}
|