package com.thhy.materials.modules.biz.concret.service;
|
|
import com.thhy.general.common.BasicResult;
|
|
import java.util.Map;
|
|
public interface TSteelNeedYearService {
|
BasicResult needYearInsert(Map<String, Object> values);
|
|
BasicResult needYearList(Map<String, Object> values);
|
|
BasicResult needYearDel(String steelNeedId);
|
|
BasicResult needYearInfo(String steelNeedId);
|
|
BasicResult needYearUpdate(Map<String, Object> values);
|
}
|