1234567891011121314151617181920 |
- package com.ozs.base.service;
- import com.ozs.base.domain.BaseSupplier;
- /**
- * 供应商管理
- *
- * @author sunhh
- */
- public interface BaseSupplierService {
- /**
- * 新增供应商
- *
- * @param baseSupplier 供应商信息
- * @return 结果
- */
- public int insertBaseSupplier(BaseSupplier baseSupplier);
- }
|