|
|
|
@ -178,6 +178,21 @@ public class RentEntBean extends AbstractBean {
|
|
|
|
|
* </ul>
|
|
|
|
|
*/
|
|
|
|
|
public String createRentEnt(RentEnt rentEnt) {
|
|
|
|
|
// 변수 선언
|
|
|
|
|
String rtnMsg = ""; // 처리 결과 메시지
|
|
|
|
|
|
|
|
|
|
RentQuery req = new RentQuery();
|
|
|
|
|
req.setSchEntNo(rentEnt.getEntNo());
|
|
|
|
|
req.setDelYn("N");
|
|
|
|
|
|
|
|
|
|
// 임대 기업(TB_RENT_ENT) 정보를 조회한다.
|
|
|
|
|
DataObject rentEntInfo = rentEntMapper.selectRentEntInfo(req);
|
|
|
|
|
|
|
|
|
|
if (rentEntInfo != null) {
|
|
|
|
|
rtnMsg = "[F] 작업 중 오류가 발생하였습니다.<br>이미 등록된 임대기업 정보가 존재합니다.";
|
|
|
|
|
return rtnMsg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 임대기업(TB_RENT_ENT) 대장을 등록한다.
|
|
|
|
|
int rtnNocs = rentEntMapper.insertRentEnt(rentEnt);
|
|
|
|
|
if (rtnNocs != 1) {
|
|
|
|
|