| | |
| | | |
| | | import com.java110.po.contractChangePlan.ContractChangePlanPo; |
| | | import com.java110.po.contractChangePlanDetail.ContractChangePlanDetailPo; |
| | | import com.java110.po.contractChangePlanRoom.ContractChangePlanRoomPo; |
| | | import org.springframework.http.ResponseEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ISaveContractChangePlanBMO { |
| | | |
| | | |
| | |
| | | * @param contractChangePlanPo |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> save(ContractChangePlanPo contractChangePlanPo, ContractChangePlanDetailPo contractChangePlanDetailPo); |
| | | ResponseEntity<String> save(ContractChangePlanPo contractChangePlanPo, |
| | | ContractChangePlanDetailPo contractChangePlanDetailPo, |
| | | List<ContractChangePlanRoomPo> contractChangePlanRoomPos); |
| | | |
| | | |
| | | } |