羊奶出入库
This commit is contained in:
parent
feffe7f9ff
commit
8eedf3b3ff
@ -67,3 +67,4 @@ public class NpMilkInOutStoreController extends BaseController {
|
||||
return AjaxResult.success(service.getAllColumnOptions());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,3 +76,4 @@ public class NpSheepMilkAnalysisController extends BaseController {
|
||||
return util.exportExcel(list, "奶产量分析数据");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -125,4 +125,4 @@ public class NpMilkInOutStore extends BaseEntity {
|
||||
|
||||
public BigDecimal getReturnYogurt() { return returnYogurt; }
|
||||
public void setReturnYogurt(BigDecimal returnYogurt) { this.returnYogurt = returnYogurt; }
|
||||
}
|
||||
}
|
||||
|
@ -159,3 +159,4 @@ public class NpSheepMilkAnalysis {
|
||||
public Date getLastUpdate() { return lastUpdate; }
|
||||
public void setLastUpdate(Date lastUpdate) { this.lastUpdate = lastUpdate; }
|
||||
}
|
||||
|
||||
|
@ -20,3 +20,4 @@ public interface NpMilkInOutStoreMapper {
|
||||
List<String> selectFeedSources();
|
||||
List<String> selectSaleDestinations();
|
||||
}
|
||||
|
||||
|
@ -16,4 +16,4 @@ public interface NpSheepMilkAnalysisMapper {
|
||||
int deleteNpSheepMilkAnalysisById(Long id);
|
||||
|
||||
int deleteNpSheepMilkAnalysisByIds(Long[] ids);
|
||||
}
|
||||
}
|
||||
|
@ -12,4 +12,5 @@ public interface INpMilkInOutStoreService {
|
||||
List<Map<String,Object>> getAllColumnOptions();
|
||||
List<Map<String,Object>> parseImportExcel(MultipartFile file) throws Exception;
|
||||
void batchInsertFromRows(List<Map<String,Object>> rows) throws Exception;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -16,4 +16,5 @@ public interface INpSheepMilkAnalysisService {
|
||||
int deleteNpSheepMilkAnalysisById(Long id);
|
||||
|
||||
int deleteNpSheepMilkAnalysisByIds(Long[] ids);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -79,3 +79,4 @@ public class NpMilkInOutStoreServiceImpl implements INpMilkInOutStoreService {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -43,4 +43,5 @@ public class NpSheepMilkAnalysisServiceImpl implements INpSheepMilkAnalysisServi
|
||||
public int deleteNpSheepMilkAnalysisByIds(Long[] ids) {
|
||||
return npSheepMilkAnalysisMapper.deleteNpSheepMilkAnalysisByIds(ids);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -55,4 +55,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
#{amount})
|
||||
</insert>
|
||||
|
||||
</mapper>
|
||||
</mapper>
|
||||
|
@ -149,4 +149,4 @@
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
</mapper>
|
||||
|
Loading…
x
Reference in New Issue
Block a user