Compare commits

..

No commits in common. "6db5787f8ef9b0d4b22a8a8afab7b1f9162128a5" and "b88c7fc95ae040b52ace0436a38b732053988f9f" have entirely different histories.

130 changed files with 394 additions and 315 deletions

View File

@ -1,10 +1,7 @@
package com.zhyc.module.base.controller; package com.zhyc.module.base.variety.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.base.domain.BasSheepVariety;
import com.zhyc.module.base.service.IBasSheepVarietyService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -19,6 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.base.variety.domain.BasSheepVariety;
import com.zhyc.module.base.variety.service.IBasSheepVarietyService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.base.variety.domain;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;

View File

@ -1,8 +1,7 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.base.variety.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.base.variety.domain.BasSheepVariety;
import com.zhyc.module.base.domain.BasSheepVariety;
/** /**
* 羊只品种Mapper接口 * 羊只品种Mapper接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.base.service; package com.zhyc.module.base.variety.service;
import java.util.List; import java.util.List;
import com.zhyc.module.base.variety.domain.BasSheepVariety;
import com.zhyc.module.base.domain.BasSheepVariety;
/** /**
* 羊只品种Service接口 * 羊只品种Service接口

View File

@ -1,12 +1,11 @@
package com.zhyc.module.base.service.impl; package com.zhyc.module.base.variety.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.module.base.domain.BasSheepVariety;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.base.mapper.BasSheepVarietyMapper; import com.zhyc.module.base.variety.mapper.BasSheepVarietyMapper;
import com.zhyc.module.base.service.IBasSheepVarietyService; import com.zhyc.module.base.variety.domain.BasSheepVariety;
import com.zhyc.module.base.variety.service.IBasSheepVarietyService;
/** /**
* 羊只品种Service业务层处理 * 羊只品种Service业务层处理

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.dryMatterCorrection.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@ -16,8 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.domain.XzDryMatterCorrection; import com.zhyc.module.dairyProducts.dryMatterCorrection.domain.XzDryMatterCorrection;
import com.zhyc.module.dairyProducts.service.IXzDryMatterCorrectionService; import com.zhyc.module.dairyProducts.dryMatterCorrection.service.IXzDryMatterCorrectionService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.dryMatterCorrection.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.dryMatterCorrection.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzDryMatterCorrection; import com.zhyc.module.dairyProducts.dryMatterCorrection.domain.XzDryMatterCorrection;
/** /**
* 干物质校正Mapper接口 * 干物质校正Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.dryMatterCorrection.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzDryMatterCorrection; import com.zhyc.module.dairyProducts.dryMatterCorrection.domain.XzDryMatterCorrection;
/** /**
* 干物质校正Service接口 * 干物质校正Service接口

View File

@ -1,11 +1,11 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.dryMatterCorrection.service.impl;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.mapper.XzDryMatterCorrectionMapper; import com.zhyc.module.dairyProducts.dryMatterCorrection.mapper.XzDryMatterCorrectionMapper;
import com.zhyc.module.dairyProducts.domain.XzDryMatterCorrection; import com.zhyc.module.dairyProducts.dryMatterCorrection.domain.XzDryMatterCorrection;
import com.zhyc.module.dairyProducts.service.IXzDryMatterCorrectionService; import com.zhyc.module.dairyProducts.dryMatterCorrection.service.IXzDryMatterCorrectionService;
/** /**
* 干物质校正Service业务层处理 * 干物质校正Service业务层处理

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.freshMilkTest.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@ -16,8 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.domain.NpFreshMilkInsp; import com.zhyc.module.dairyProducts.freshMilkTest.domain.NpFreshMilkInsp;
import com.zhyc.module.dairyProducts.service.INpFreshMilkInspService; import com.zhyc.module.dairyProducts.freshMilkTest.service.INpFreshMilkInspService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.freshMilkTest.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.freshMilkTest.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.NpFreshMilkInsp; import com.zhyc.module.dairyProducts.freshMilkTest.domain.NpFreshMilkInsp;
/** /**
* 鲜奶生产成品检验记录Mapper接口 * 鲜奶生产成品检验记录Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.freshMilkTest.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.NpFreshMilkInsp; import com.zhyc.module.dairyProducts.freshMilkTest.domain.NpFreshMilkInsp;
/** /**
* 鲜奶生产成品检验记录Service接口 * 鲜奶生产成品检验记录Service接口

View File

@ -1,12 +1,12 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.freshMilkTest.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.mapper.NpFreshMilkInspMapper; import com.zhyc.module.dairyProducts.freshMilkTest.mapper.NpFreshMilkInspMapper;
import com.zhyc.module.dairyProducts.domain.NpFreshMilkInsp; import com.zhyc.module.dairyProducts.freshMilkTest.domain.NpFreshMilkInsp;
import com.zhyc.module.dairyProducts.service.INpFreshMilkInspService; import com.zhyc.module.dairyProducts.freshMilkTest.service.INpFreshMilkInspService;
/** /**
* 鲜奶生产成品检验记录Service业务层处理 * 鲜奶生产成品检验记录Service业务层处理

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.parityCorrection.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@ -16,8 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.domain.XzParityCorrection; import com.zhyc.module.dairyProducts.parityCorrection.domain.XzParityCorrection;
import com.zhyc.module.dairyProducts.service.IXzParityCorrectionService; import com.zhyc.module.dairyProducts.parityCorrection.service.IXzParityCorrectionService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.parityCorrection.domain;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.parityCorrection.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzParityCorrection; import com.zhyc.module.dairyProducts.parityCorrection.domain.XzParityCorrection;
/** /**
* 胎次校正Mapper接口 * 胎次校正Mapper接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.parityCorrection.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.parityCorrection.domain.XzParityCorrection;
import com.zhyc.module.dairyProducts.domain.XzParityCorrection;
/** /**
* 胎次校正Service接口 * 胎次校正Service接口

View File

@ -1,12 +1,11 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.parityCorrection.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.mapper.XzParityCorrectionMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.domain.XzParityCorrection; import com.zhyc.module.dairyProducts.parityCorrection.mapper.XzParityCorrectionMapper;
import com.zhyc.module.dairyProducts.service.IXzParityCorrectionService; import com.zhyc.module.dairyProducts.parityCorrection.domain.XzParityCorrection;
import com.zhyc.module.dairyProducts.parityCorrection.service.IXzParityCorrectionService;
/** /**
* 胎次校正Service业务层处理 * 胎次校正Service业务层处理

View File

@ -1,9 +1,7 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.rawMilkTest.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.dairyProducts.service.INpRawMilkInspeService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -18,7 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.domain.NpRawMilkInspe; import com.zhyc.module.dairyProducts.rawMilkTest.domain.NpRawMilkInspe;
import com.zhyc.module.dairyProducts.rawMilkTest.service.INpRawMilkInspeService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -340,7 +340,7 @@
// .toString(); // .toString();
// } // }
//} //}
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.rawMilkTest.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.rawMilkTest.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.NpRawMilkInspe; import com.zhyc.module.dairyProducts.rawMilkTest.domain.NpRawMilkInspe;
/** /**
* 生乳检验记录Mapper接口 * 生乳检验记录Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.rawMilkTest.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.NpRawMilkInspe; import com.zhyc.module.dairyProducts.rawMilkTest.domain.NpRawMilkInspe;
/** /**
* 生乳检验记录Service接口 * 生乳检验记录Service接口

View File

@ -1,12 +1,12 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.rawMilkTest.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.mapper.NpRawMilkInspeMapper; import com.zhyc.module.dairyProducts.rawMilkTest.mapper.NpRawMilkInspeMapper;
import com.zhyc.module.dairyProducts.domain.NpRawMilkInspe; import com.zhyc.module.dairyProducts.rawMilkTest.domain.NpRawMilkInspe;
import com.zhyc.module.dairyProducts.service.INpRawMilkInspeService; import com.zhyc.module.dairyProducts.rawMilkTest.service.INpRawMilkInspeService;
/** /**
* 生乳检验记录Service业务层处理 * 生乳检验记录Service业务层处理

View File

@ -1,10 +1,7 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.weightCorrection.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.dairyProducts.domain.XzWegihCorrection;
import com.zhyc.module.dairyProducts.service.IXzWegihCorrectionService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -19,6 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.weightCorrection.domain.XzWegihCorrection;
import com.zhyc.module.dairyProducts.weightCorrection.service.IXzWegihCorrectionService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.weightCorrection.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.weightCorrection.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzWegihCorrection; import com.zhyc.module.dairyProducts.weightCorrection.domain.XzWegihCorrection;
/** /**
* 称重校正Mapper接口 * 称重校正Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.weightCorrection.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzWegihCorrection; import com.zhyc.module.dairyProducts.weightCorrection.domain.XzWegihCorrection;
/** /**
* 称重校正Service接口 * 称重校正Service接口

View File

@ -1,12 +1,11 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.weightCorrection.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.domain.XzWegihCorrection;
import com.zhyc.module.dairyProducts.mapper.XzWegihCorrectionMapper;
import com.zhyc.module.dairyProducts.service.IXzWegihCorrectionService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.weightCorrection.mapper.XzWegihCorrectionMapper;
import com.zhyc.module.dairyProducts.weightCorrection.domain.XzWegihCorrection;
import com.zhyc.module.dairyProducts.weightCorrection.service.IXzWegihCorrectionService;
/** /**
* 称重校正Service业务层处理 * 称重校正Service业务层处理

View File

@ -1,9 +1,7 @@
package com.zhyc.module.dairyProducts.controller; package com.zhyc.module.dairyProducts.yogurtTest.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.dairyProducts.domain.NpYogurtInsp;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -18,7 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.dairyProducts.service.INpYogurtInspService; import com.zhyc.module.dairyProducts.yogurtTest.domain.NpYogurtInsp;
import com.zhyc.module.dairyProducts.yogurtTest.service.INpYogurtInspService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.dairyProducts.domain; package com.zhyc.module.dairyProducts.yogurtTest.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,8 +1,7 @@
package com.zhyc.module.dairyProducts.mapper; package com.zhyc.module.dairyProducts.yogurtTest.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.yogurtTest.domain.NpYogurtInsp;
import com.zhyc.module.dairyProducts.domain.NpYogurtInsp;
/** /**
* 酸奶生产成品检疫记录Mapper接口 * 酸奶生产成品检疫记录Mapper接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.dairyProducts.service; package com.zhyc.module.dairyProducts.yogurtTest.service;
import java.util.List; import java.util.List;
import com.zhyc.module.dairyProducts.yogurtTest.domain.NpYogurtInsp;
import com.zhyc.module.dairyProducts.domain.NpYogurtInsp;
/** /**
* 酸奶生产成品检疫记录Service接口 * 酸奶生产成品检疫记录Service接口

View File

@ -1,12 +1,12 @@
package com.zhyc.module.dairyProducts.service.impl; package com.zhyc.module.dairyProducts.yogurtTest.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.dairyProducts.domain.NpYogurtInsp;
import com.zhyc.module.dairyProducts.mapper.NpYogurtInspMapper;
import com.zhyc.module.dairyProducts.service.INpYogurtInspService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.dairyProducts.yogurtTest.mapper.NpYogurtInspMapper;
import com.zhyc.module.dairyProducts.yogurtTest.domain.NpYogurtInsp;
import com.zhyc.module.dairyProducts.yogurtTest.service.INpYogurtInspService;
/** /**
* 酸奶生产成品检疫记录Service业务层处理 * 酸奶生产成品检疫记录Service业务层处理

View File

@ -1,12 +1,12 @@
package com.zhyc.module.base.controller; package com.zhyc.module.fileManagement.controller;
import com.zhyc.common.annotation.Log; import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.module.base.domain.BasSheepGroup; import com.zhyc.module.fileManagement.domain.BasSheepGroup;
import com.zhyc.module.base.service.IBasSheepGroupService; import com.zhyc.module.fileManagement.service.IBasSheepGroupService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.controller; package com.zhyc.module.fileManagement.controller;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
@ -6,7 +6,6 @@ import java.util.Map;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.common.utils.StringUtils; import com.zhyc.common.utils.StringUtils;
import com.zhyc.module.base.domain.BasSheepGroupMapping;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@ -14,7 +13,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.base.service.IBasSheepGroupMappingService; import com.zhyc.module.fileManagement.domain.BasSheepGroupMapping;
import com.zhyc.module.fileManagement.service.IBasSheepGroupMappingService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.controller; package com.zhyc.module.fileManagement.controller;
import com.zhyc.common.annotation.Log; import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
@ -6,8 +6,8 @@ import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.fileManagement.domain.DaSheepfold;
import com.zhyc.module.base.service.IDaSheepfoldService; import com.zhyc.module.fileManagement.service.IDaSheepfoldService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.controller; package com.zhyc.module.fileManagement.controller;
import com.zhyc.common.annotation.Log; import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
@ -6,8 +6,8 @@ import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.module.base.domain.SheepFile; import com.zhyc.module.fileManagement.domain.SheepFile;
import com.zhyc.module.base.service.ISheepFileService; import com.zhyc.module.fileManagement.service.ISheepFileService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.fileManagement.domain;
import com.zhyc.common.annotation.Excel; import com.zhyc.common.annotation.Excel;
import com.zhyc.common.core.domain.TreeEntity; import com.zhyc.common.core.domain.TreeEntity;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.fileManagement.domain;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.fileManagement.domain;
import com.zhyc.common.annotation.Excel; import com.zhyc.common.annotation.Excel;
import com.zhyc.common.core.domain.BaseEntity; import com.zhyc.common.core.domain.BaseEntity;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.fileManagement.domain;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.zhyc.common.annotation.Excel; import com.zhyc.common.annotation.Excel;

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.fileManagement.mapper;
import com.zhyc.module.base.domain.BasSheepGroup; import com.zhyc.module.fileManagement.domain.BasSheepGroup;
import java.util.List; import java.util.List;

View File

@ -1,9 +1,9 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.fileManagement.mapper;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zhyc.module.base.domain.BasSheepGroupMapping; import com.zhyc.module.fileManagement.domain.BasSheepGroupMapping;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
/** /**
* 羊只分组关联Mapper接口 * 羊只分组关联Mapper接口

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.fileManagement.mapper;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.fileManagement.domain.DaSheepfold;
import java.util.List; import java.util.List;

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.fileManagement.mapper;
import com.zhyc.module.base.domain.SheepFile; import com.zhyc.module.fileManagement.domain.SheepFile;
import java.util.List; import java.util.List;

View File

@ -1,9 +1,9 @@
package com.zhyc.module.base.service; package com.zhyc.module.fileManagement.service;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zhyc.module.base.domain.BasSheepGroupMapping; import com.zhyc.module.fileManagement.domain.BasSheepGroupMapping;
/** /**
* 羊只分组关联Service接口 * 羊只分组关联Service接口

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.service; package com.zhyc.module.fileManagement.service;
import com.zhyc.module.base.domain.BasSheepGroup; import com.zhyc.module.fileManagement.domain.BasSheepGroup;
import java.util.List; import java.util.List;

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.service; package com.zhyc.module.fileManagement.service;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.fileManagement.domain.DaSheepfold;
import java.util.List; import java.util.List;

View File

@ -1,6 +1,6 @@
package com.zhyc.module.base.service; package com.zhyc.module.fileManagement.service;
import com.zhyc.module.base.domain.SheepFile; import com.zhyc.module.fileManagement.domain.SheepFile;
import java.util.List; import java.util.List;

View File

@ -1,13 +1,13 @@
package com.zhyc.module.base.service.impl; package com.zhyc.module.fileManagement.service.impl;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zhyc.module.base.domain.BasSheepGroupMapping;
import com.zhyc.module.base.mapper.BasSheepGroupMappingMapper;
import com.zhyc.module.base.service.IBasSheepGroupMappingService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.fileManagement.mapper.BasSheepGroupMappingMapper;
import com.zhyc.module.fileManagement.domain.BasSheepGroupMapping;
import com.zhyc.module.fileManagement.service.IBasSheepGroupMappingService;
/** /**
* 羊只分组关联Service业务层处理 * 羊只分组关联Service业务层处理

View File

@ -1,9 +1,9 @@
package com.zhyc.module.base.service.impl; package com.zhyc.module.fileManagement.service.impl;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.base.domain.BasSheepGroup; import com.zhyc.module.fileManagement.domain.BasSheepGroup;
import com.zhyc.module.base.mapper.BasSheepGroupMapper; import com.zhyc.module.fileManagement.mapper.BasSheepGroupMapper;
import com.zhyc.module.base.service.IBasSheepGroupService; import com.zhyc.module.fileManagement.service.IBasSheepGroupService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,8 +1,8 @@
package com.zhyc.module.base.service.impl; package com.zhyc.module.fileManagement.service.impl;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.fileManagement.domain.DaSheepfold;
import com.zhyc.module.base.mapper.DaSheepfoldMapper; import com.zhyc.module.fileManagement.mapper.DaSheepfoldMapper;
import com.zhyc.module.base.service.IDaSheepfoldService; import com.zhyc.module.fileManagement.service.IDaSheepfoldService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,9 +1,9 @@
package com.zhyc.module.base.service.impl; package com.zhyc.module.fileManagement.service.impl;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.base.domain.SheepFile; import com.zhyc.module.fileManagement.domain.SheepFile;
import com.zhyc.module.base.mapper.SheepFileMapper; import com.zhyc.module.fileManagement.mapper.SheepFileMapper;
import com.zhyc.module.base.service.ISheepFileService; import com.zhyc.module.fileManagement.service.ISheepFileService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.breed.controller; package com.zhyc.module.produce.drymilk.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@ -16,8 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.produce.breed.domain.ScDryMilk; import com.zhyc.module.produce.drymilk.domain.ScDryMilk;
import com.zhyc.module.produce.breed.service.IScDryMilkService; import com.zhyc.module.produce.drymilk.service.IScDryMilkService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.breed.domain; package com.zhyc.module.produce.drymilk.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,7 +1,7 @@
package com.zhyc.module.produce.breed.mapper; package com.zhyc.module.produce.drymilk.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.breed.domain.ScDryMilk; import com.zhyc.module.produce.drymilk.domain.ScDryMilk;
/** /**
* 干奶记录Mapper接口 * 干奶记录Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.produce.breed.service; package com.zhyc.module.produce.drymilk.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.breed.domain.ScDryMilk; import com.zhyc.module.produce.drymilk.domain.ScDryMilk;
/** /**
* 干奶记录Service接口 * 干奶记录Service接口

View File

@ -1,11 +1,11 @@
package com.zhyc.module.produce.breed.service.impl; package com.zhyc.module.produce.drymilk.service.impl;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.produce.breed.mapper.ScDryMilkMapper; import com.zhyc.module.produce.drymilk.mapper.ScDryMilkMapper;
import com.zhyc.module.produce.breed.domain.ScDryMilk; import com.zhyc.module.produce.drymilk.domain.ScDryMilk;
import com.zhyc.module.produce.breed.service.IScDryMilkService; import com.zhyc.module.produce.drymilk.service.IScDryMilkService;
import com.zhyc.common.utils.StringUtils; import com.zhyc.common.utils.StringUtils;
import com.zhyc.common.exception.ServiceException; import com.zhyc.common.exception.ServiceException;

View File

@ -1,14 +1,14 @@
package com.zhyc.module.produce.manage_sheep.controller; package com.zhyc.module.produce.manage_sheep.add_sheep.controller;
import com.zhyc.common.annotation.Log; import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.common.exception.ServiceException; import com.zhyc.common.exception.ServiceException;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.module.produce.manage_sheep.domain.ScAddSheep; import com.zhyc.module.produce.manage_sheep.add_sheep.domain.ScAddSheep;
import com.zhyc.module.produce.manage_sheep.service.IScAddSheepService; import com.zhyc.module.produce.manage_sheep.add_sheep.service.IScAddSheepService;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.fileManagement.domain.DaSheepfold;
import com.zhyc.module.base.service.IDaSheepfoldService; import com.zhyc.module.fileManagement.service.IDaSheepfoldService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.manage_sheep.domain; package com.zhyc.module.produce.manage_sheep.add_sheep.domain;
import com.zhyc.common.annotation.Excel; import com.zhyc.common.annotation.Excel;
import com.zhyc.common.core.domain.BaseEntity; import com.zhyc.common.core.domain.BaseEntity;

View File

@ -1,6 +1,6 @@
package com.zhyc.module.produce.manage_sheep.mapper; package com.zhyc.module.produce.manage_sheep.add_sheep.mapper;
import com.zhyc.module.produce.manage_sheep.domain.ScAddSheep; import com.zhyc.module.produce.manage_sheep.add_sheep.domain.ScAddSheep;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import java.util.List; import java.util.List;

View File

@ -1,6 +1,7 @@
package com.zhyc.module.produce.manage_sheep.service; package com.zhyc.module.produce.manage_sheep.add_sheep.service;
import com.zhyc.module.produce.manage_sheep.domain.ScAddSheep; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.module.produce.manage_sheep.add_sheep.domain.ScAddSheep;
import java.util.List; import java.util.List;

View File

@ -1,14 +1,16 @@
package com.zhyc.module.produce.manage_sheep.service.impl; package com.zhyc.module.produce.manage_sheep.add_sheep.service.impl;
import com.zhyc.common.exception.ServiceException; import com.zhyc.common.exception.ServiceException;
import com.zhyc.common.utils.StringUtils; import com.zhyc.common.utils.StringUtils;
import com.zhyc.module.produce.manage_sheep.domain.ScAddSheep; import com.zhyc.module.produce.manage_sheep.add_sheep.domain.ScAddSheep;
import com.zhyc.module.produce.manage_sheep.mapper.ScAddSheepMapper; import com.zhyc.module.produce.manage_sheep.add_sheep.mapper.ScAddSheepMapper;
import com.zhyc.module.produce.manage_sheep.service.IScAddSheepService; import com.zhyc.module.produce.manage_sheep.add_sheep.service.IScAddSheepService;
import com.zhyc.module.base.domain.BasSheep; import com.zhyc.module.produce.sheep.domain.BasSheep;
import com.zhyc.module.base.service.IBasSheepService; import com.zhyc.module.produce.sheep.mapper.BasSheepMapper;
import com.zhyc.module.base.domain.DaSheepfold; import com.zhyc.module.produce.sheep.service.IBasSheepService;
import com.zhyc.module.base.mapper.DaSheepfoldMapper; import com.zhyc.module.produce.sheep.service.impl.BasSheepServiceImpl;
import com.zhyc.module.fileManagement.domain.DaSheepfold;
import com.zhyc.module.fileManagement.mapper.DaSheepfoldMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,11 +1,11 @@
package com.zhyc.module.produce.manage_sheep.controller; package com.zhyc.module.produce.manage_sheep.trans_group.controller;
import java.io.IOException; import java.io.IOException;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.produce.manage_sheep.domain.ScTransGroup; import com.zhyc.module.produce.manage_sheep.trans_group.domain.ScTransGroup;
import com.zhyc.module.produce.manage_sheep.service.IScTransGroupService; import com.zhyc.module.produce.manage_sheep.trans_group.service.IScTransGroupService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.manage_sheep.domain; package com.zhyc.module.produce.manage_sheep.trans_group.domain;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;
@ -66,6 +66,12 @@ public class ScTransGroup extends BaseEntity {
@Excel(name = "品种") @Excel(name = "品种")
private String varietyName; private String varietyName;
/** 品种id */
private Long varietyId;
/** 品种名称(联表查询返回,非数据库字段) */
@Excel(name = "品种")
private String varietyName;
private Integer reason; private Integer reason;
/** /**

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.manage_sheep.mapper; package com.zhyc.module.produce.manage_sheep.trans_group.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.manage_sheep.domain.ScTransGroup; import com.zhyc.module.produce.manage_sheep.trans_group.domain.ScTransGroup;
/** /**
* 转群记录Mapper接口 * 转群记录Mapper接口

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.manage_sheep.service; package com.zhyc.module.produce.manage_sheep.trans_group.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.manage_sheep.domain.ScTransGroup; import com.zhyc.module.produce.manage_sheep.trans_group.domain.ScTransGroup;
/** /**
* 转群记录Service接口 * 转群记录Service接口

View File

@ -1,13 +1,13 @@
package com.zhyc.module.produce.manage_sheep.service.impl; package com.zhyc.module.produce.manage_sheep.trans_group.service.impl;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.produce.manage_sheep.mapper.ScTransGroupMapper; import com.zhyc.module.produce.manage_sheep.trans_group.domain.ScTransGroup;
import com.zhyc.module.produce.manage_sheep.service.IScTransGroupService; import com.zhyc.module.produce.manage_sheep.trans_group.mapper.ScTransGroupMapper;
import com.zhyc.module.produce.manage_sheep.domain.ScTransGroup; import com.zhyc.module.produce.manage_sheep.trans_group.service.IScTransGroupService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.manage_sheep.controller; package com.zhyc.module.produce.manage_sheep.transition_info.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@ -16,8 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.produce.manage_sheep.domain.ScTransitionInfo; import com.zhyc.module.produce.manage_sheep.transition_info.domain.ScTransitionInfo;
import com.zhyc.module.produce.manage_sheep.service.IScTransitionInfoService; import com.zhyc.module.produce.manage_sheep.transition_info.service.IScTransitionInfoService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.manage_sheep.domain; package com.zhyc.module.produce.manage_sheep.transition_info.domain;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.manage_sheep.mapper; package com.zhyc.module.produce.manage_sheep.transition_info.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.manage_sheep.domain.ScTransitionInfo; import com.zhyc.module.produce.manage_sheep.transition_info.domain.ScTransitionInfo;
/** /**
* 转场Mapper接口 * 转场Mapper接口

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.manage_sheep.service; package com.zhyc.module.produce.manage_sheep.transition_info.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.manage_sheep.domain.ScTransitionInfo; import com.zhyc.module.produce.manage_sheep.transition_info.domain.ScTransitionInfo;
/** /**
* 转场Service接口 * 转场Service接口

View File

@ -1,12 +1,12 @@
package com.zhyc.module.produce.manage_sheep.service.impl; package com.zhyc.module.produce.manage_sheep.transition_info.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.produce.manage_sheep.mapper.ScTransitionInfoMapper; import com.zhyc.module.produce.manage_sheep.transition_info.domain.ScTransitionInfo;
import com.zhyc.module.produce.manage_sheep.domain.ScTransitionInfo; import com.zhyc.module.produce.manage_sheep.transition_info.mapper.ScTransitionInfoMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.produce.manage_sheep.service.IScTransitionInfoService; import com.zhyc.module.produce.manage_sheep.transition_info.service.IScTransitionInfoService;
/** /**
* 转场Service业务层处理 * 转场Service业务层处理

View File

@ -1,9 +1,7 @@
package com.zhyc.module.produce.breed.controller; package com.zhyc.module.produce.mating_plan.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.produce.breed.domain.ScBreedPlan;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -18,7 +16,8 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.produce.breed.service.IScBreedPlanService; import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
import com.zhyc.module.produce.mating_plan.service.IScBreedPlanService;
import com.zhyc.common.utils.poi.ExcelUtil; import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;

View File

@ -1,11 +1,9 @@
package com.zhyc.module.produce.breed.controller; package com.zhyc.module.produce.mating_plan.controller;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.produce.breed.domain.ScBreedPlanGenerate;
import com.zhyc.module.produce.breed.service.IScBreedPlanGenerateService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -20,6 +18,11 @@ import com.zhyc.common.annotation.Log;
import com.zhyc.common.core.controller.BaseController; import com.zhyc.common.core.controller.BaseController;
import com.zhyc.common.core.domain.AjaxResult; import com.zhyc.common.core.domain.AjaxResult;
import com.zhyc.common.enums.BusinessType; import com.zhyc.common.enums.BusinessType;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlanGenerate;
import com.zhyc.module.produce.mating_plan.service.IScBreedPlanService;
import com.zhyc.module.produce.mating_plan.service.IScBreedPlanGenerateService;
import com.zhyc.common.utils.poi.ExcelUtil;
import com.zhyc.common.core.page.TableDataInfo; import com.zhyc.common.core.page.TableDataInfo;
/** /**

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.breed.domain; package com.zhyc.module.produce.mating_plan.domain;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.breed.domain; package com.zhyc.module.produce.mating_plan.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.breed.domain; package com.zhyc.module.produce.mating_plan.domain;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;

View File

@ -1,10 +1,10 @@
package com.zhyc.module.produce.breed.mapper; package com.zhyc.module.produce.mating_plan.mapper;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import com.zhyc.module.produce.breed.domain.ScBreedPlanGenerate; import com.zhyc.module.produce.mating_plan.domain.ScBreedPlanGenerate;
import com.zhyc.module.produce.breed.domain.ScBreedPlan; import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
/** /**
* 配种计划生成Mapper接口 * 配种计划生成Mapper接口

View File

@ -1,7 +1,7 @@
package com.zhyc.module.produce.breed.mapper; package com.zhyc.module.produce.mating_plan.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.breed.domain.ScBreedPlan; import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
/** /**
* 配种计划Mapper接口 * 配种计划Mapper接口

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.breed.service; package com.zhyc.module.produce.mating_plan.service;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import com.zhyc.module.produce.breed.domain.ScBreedPlanGenerate; import com.zhyc.module.produce.mating_plan.domain.ScBreedPlanGenerate;
/** /**
* 配种计划生成Service接口 * 配种计划生成Service接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.produce.breed.service; package com.zhyc.module.produce.mating_plan.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
import com.zhyc.module.produce.breed.domain.ScBreedPlan;
/** /**
* 配种计划Service接口 * 配种计划Service接口

View File

@ -1,20 +1,20 @@
package com.zhyc.module.produce.breed.service.impl; package com.zhyc.module.produce.mating_plan.service.impl;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.HashMap; import java.util.HashMap;
import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import com.zhyc.module.produce.breed.domain.ScBreedPlan;
import com.zhyc.module.produce.breed.domain.ScBreedPlanGenerate;
import com.zhyc.module.produce.breed.mapper.ScBreedPlanGenerateMapper;
import com.zhyc.module.produce.breed.mapper.ScBreedPlanMapper;
import com.zhyc.module.produce.breed.service.IScBreedPlanGenerateService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import com.zhyc.common.utils.SecurityUtils; import com.zhyc.common.utils.SecurityUtils;
import com.zhyc.module.produce.mating_plan.mapper.ScBreedPlanGenerateMapper;
import com.zhyc.module.produce.mating_plan.mapper.ScBreedPlanMapper;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlanGenerate;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
import com.zhyc.module.produce.mating_plan.service.IScBreedPlanGenerateService;
/** /**
* 配种计划生成Service业务层处理 * 配种计划生成Service业务层处理

View File

@ -1,12 +1,11 @@
package com.zhyc.module.produce.breed.service.impl; package com.zhyc.module.produce.mating_plan.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.breed.domain.ScBreedPlan;
import com.zhyc.module.produce.breed.mapper.ScBreedPlanMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.produce.breed.service.IScBreedPlanService; import com.zhyc.module.produce.mating_plan.mapper.ScBreedPlanMapper;
import com.zhyc.module.produce.mating_plan.domain.ScBreedPlan;
import com.zhyc.module.produce.mating_plan.service.IScBreedPlanService;
/** /**
* 配种计划Service业务层处理 * 配种计划Service业务层处理

View File

@ -1,10 +1,10 @@
package com.zhyc.module.produce.other.controller; package com.zhyc.module.produce.other.castrate.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.produce.other.domain.ScCastrate; import com.zhyc.module.produce.other.castrate.domain.ScCastrate;
import com.zhyc.module.produce.other.service.IScCastrateService; import com.zhyc.module.produce.other.castrate.service.IScCastrateService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.other.domain; package com.zhyc.module.produce.other.castrate.domain;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.other.mapper; package com.zhyc.module.produce.other.castrate.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.other.domain.ScCastrate; import com.zhyc.module.produce.other.castrate.domain.ScCastrate;
/** /**
* 去势Mapper接口 * 去势Mapper接口

View File

@ -1,8 +1,8 @@
package com.zhyc.module.produce.other.service; package com.zhyc.module.produce.other.castrate.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.other.domain.ScCastrate; import com.zhyc.module.produce.other.castrate.domain.ScCastrate;
/** /**
* 去势Service接口 * 去势Service接口

View File

@ -1,10 +1,10 @@
package com.zhyc.module.produce.other.service.impl; package com.zhyc.module.produce.other.castrate.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.module.produce.other.domain.ScCastrate; import com.zhyc.module.produce.other.castrate.domain.ScCastrate;
import com.zhyc.module.produce.other.mapper.ScCastrateMapper; import com.zhyc.module.produce.other.castrate.mapper.ScCastrateMapper;
import com.zhyc.module.produce.other.service.IScCastrateService; import com.zhyc.module.produce.other.castrate.service.IScCastrateService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@ -1,10 +1,10 @@
package com.zhyc.module.produce.other.controller; package com.zhyc.module.produce.other.fixHoof.controller;
import java.util.List; import java.util.List;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.produce.other.domain.ScFixHoof; import com.zhyc.module.produce.other.fixHoof.domain.ScFixHoof;
import com.zhyc.module.produce.other.service.IScFixHoofService; import com.zhyc.module.produce.other.fixHoof.service.IScFixHoofService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.produce.other.domain; package com.zhyc.module.produce.other.fixHoof.domain;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;

View File

@ -1,8 +1,10 @@
package com.zhyc.module.produce.other.mapper; package com.zhyc.module.produce.other.fixHoof.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.other.domain.ScFixHoof; import com.zhyc.module.produce.other.fixHoof.domain.ScFixHoof;
import com.zhyc.module.produce.sheep.domain.BasSheep;
import org.apache.ibatis.annotations.Param;
/** /**
* 修蹄Mapper接口 * 修蹄Mapper接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.produce.other.service; package com.zhyc.module.produce.other.fixHoof.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.other.fixHoof.domain.ScFixHoof;
import com.zhyc.module.produce.other.domain.ScFixHoof;
/** /**
* 修蹄Service接口 * 修蹄Service接口

View File

@ -1,17 +1,18 @@
package com.zhyc.module.produce.other.service.impl; package com.zhyc.module.produce.other.fixHoof.service.impl;
import java.util.List; import java.util.List;
import com.zhyc.common.exception.ServiceException; import com.zhyc.common.exception.ServiceException;
import com.zhyc.common.utils.DateUtils; import com.zhyc.common.utils.DateUtils;
import com.zhyc.common.utils.StringUtils; import com.zhyc.common.utils.StringUtils;
import com.zhyc.module.produce.other.domain.ScFixHoof; import com.zhyc.module.produce.other.fixHoof.domain.ScFixHoof;
import com.zhyc.module.produce.other.mapper.ScFixHoofMapper; import com.zhyc.module.produce.other.fixHoof.mapper.ScFixHoofMapper;
import com.zhyc.module.base.domain.BasSheep; import com.zhyc.module.produce.sheep.domain.BasSheep;
import com.zhyc.module.base.mapper.BasSheepMapper; import com.zhyc.module.produce.sheep.mapper.BasSheepMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.zhyc.module.produce.other.service.IScFixHoofService; import com.zhyc.module.produce.other.fixHoof.service.IScFixHoofService;
import org.springframework.transaction.annotation.Transactional;
/** /**
* 修蹄Service业务层处理 * 修蹄Service业务层处理

View File

@ -1,11 +1,14 @@
package com.zhyc.module.base.controller; package com.zhyc.module.produce.sheep.controller;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import com.zhyc.module.base.domain.BasSheep; import com.zhyc.module.produce.sheep.domain.BasSheep;
import com.zhyc.module.base.mapper.BasSheepMapper; import com.zhyc.module.produce.sheep.mapper.BasSheepMapper;
import com.zhyc.module.base.service.IBasSheepService; import com.zhyc.module.produce.sheep.service.IBasSheepService;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;

View File

@ -1,4 +1,4 @@
package com.zhyc.module.base.domain; package com.zhyc.module.produce.sheep.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;

View File

@ -1,8 +1,8 @@
package com.zhyc.module.base.mapper; package com.zhyc.module.produce.sheep.mapper;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.sheep.domain.BasSheep;
import com.zhyc.module.base.domain.BasSheep; import org.apache.ibatis.annotations.Param;
/** /**
* 羊只基本信息Mapper接口 * 羊只基本信息Mapper接口

View File

@ -1,8 +1,7 @@
package com.zhyc.module.base.service; package com.zhyc.module.produce.sheep.service;
import java.util.List; import java.util.List;
import com.zhyc.module.produce.sheep.domain.BasSheep;
import com.zhyc.module.base.domain.BasSheep;
/** /**
* 羊只基本信息Service接口 * 羊只基本信息Service接口

Some files were not shown because too many files have changed in this diff Show More