You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
379 B
Java

10 months ago
package DSN;
public class feeunit_model {
private int length;
private int subcomno;
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public int getSubcomno() {
return subcomno;
}
public void setSubcomno(int subcomno) {
this.subcomno = subcomno;
}
}