ICSDepartmentService.java 354 Bytes
package com.huaheng.api.U8.service;


import com.huaheng.api.U8.domain.ICSDepartmentModel;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.stereotype.Service;

@Service
public class ICSDepartmentService {
    public AjaxResult ICSDepartment(ICSDepartmentModel icsDepartment) {
        return AjaxResult.success(1);
    }
}