提交 0ca14bc9 authored 作者: 艾庆国's avatar 艾庆国

承运优化需求-添加模板

上级 9f94213a
package com.clx.performance.service.impl.export;
import com.clx.performance.service.export.ExportFunctionService;
import org.springframework.stereotype.Service;
@Service
public class ExportFunctionServiceImpl implements ExportFunctionService {
}
package com.clx.performance.service.impl.export;
import com.clx.performance.service.export.ExportTemplateFieldService;
import org.springframework.stereotype.Service;
@Service
public class ExportTemplateFieldServiceImpl implements ExportTemplateFieldService {
}
package com.clx.performance.service.impl.export;
import com.clx.performance.service.export.ExportTemplateService;
import org.springframework.stereotype.Service;
@Service
public class ExportTemplateServiceImpl implements ExportTemplateService {
}
package com.clx.performance.service.impl.export;
import com.clx.performance.model.export.ExtendExportField;
import com.clx.performance.service.export.ExtendExportFieldService;
import com.clx.performance.struct.export.ExportFieldStruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class ExtendExportFieldServiceImpl implements ExtendExportFieldService {
@Autowired
private ExportFieldStruct exportFieldStruct;
/**
* 根据功能code查询字段
*
* @param code 功能code
* @param companyNo companyNo
* @return List
*/
@Override
public List<ExtendExportField> listFieldByFunctionCode(String code, Long companyNo, String date) {
return null;
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论