30 lines
782 B
Plaintext
30 lines
782 B
Plaintext
|
package th.co.muangthai.endrprint.model.bean.form.master;
|
||
|
|
||
|
import th.co.muangthai.endrprint.model.bean.master.EndrProvincialBean;
|
||
|
|
||
|
import java.sql.ResultSet;
|
||
|
import java.sql.SQLException;
|
||
|
|
||
|
/**
|
||
|
* Created by Yuttakarn on 13/7/2560.
|
||
|
*/
|
||
|
public class EndrProvincialForm extends EndrProvincialBean {
|
||
|
|
||
|
private String isProvincial;
|
||
|
|
||
|
// setdata
|
||
|
public void setProvincialData(ResultSet rs) throws SQLException {
|
||
|
setProvincialId(rs.getBigDecimal("provincial_id"));
|
||
|
setProvincialAbbr(rs.getString("provincial_abbr"));
|
||
|
setProvincialDesc(rs.getString("provincial_desc"));
|
||
|
}
|
||
|
|
||
|
public String getIsProvincial() {
|
||
|
return isProvincial;
|
||
|
}
|
||
|
|
||
|
public void setIsProvincial(String isProvincial) {
|
||
|
this.isProvincial = isProvincial;
|
||
|
}
|
||
|
}
|