From 8b4ddc5acdbab8633ce842851a78c006ac05af55 Mon Sep 17 00:00:00 2001 From: zyk Date: Thu, 25 Dec 2025 19:03:04 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=8D=E5=85=AC=E7=BE=8A=E6=A1=A3=E6=A1=88?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/base/domain/ViewBreedRamFile.java | 897 ++++++++++++++++++ .../base/mapper/ViewBreedRamFileMapper.java | 69 ++ .../mapper/base/ViewBreedRamFileMapper.xml | 165 ++++ 3 files changed, 1131 insertions(+) create mode 100644 zhyc-module/src/main/java/com/zhyc/module/base/domain/ViewBreedRamFile.java create mode 100644 zhyc-module/src/main/java/com/zhyc/module/base/mapper/ViewBreedRamFileMapper.java create mode 100644 zhyc-module/src/main/resources/mapper/base/ViewBreedRamFileMapper.xml diff --git a/zhyc-module/src/main/java/com/zhyc/module/base/domain/ViewBreedRamFile.java b/zhyc-module/src/main/java/com/zhyc/module/base/domain/ViewBreedRamFile.java new file mode 100644 index 0000000..720798a --- /dev/null +++ b/zhyc-module/src/main/java/com/zhyc/module/base/domain/ViewBreedRamFile.java @@ -0,0 +1,897 @@ +package com.zhyc.module.base.domain; + +import java.math.BigDecimal; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.zhyc.common.annotation.Excel; +import com.zhyc.common.core.domain.BaseEntity; + +/** + * 种公羊档案视图对象 view_breed_ram_file + * + * @author zhyc + * @date 2025-07-29 + */ +public class ViewBreedRamFile extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 种公羊id */ + private Long id; + + /** 普通耳号 */ + @Excel(name = "普通耳号") + private String ordinaryEarNumber; + + /** 牧场id */ + @Excel(name = "牧场id") + private Long ranchId; + + /** 牧场名称 */ + @Excel(name = "牧场名称") + private String ranchName; + + /** 羊舍id */ + @Excel(name = "羊舍id") + private Long sheepfoldId; + + /** 羊舍名称 */ + @Excel(name = "羊舍名称") + private String sheepfoldName; + + /** 电子耳号 */ + @Excel(name = "电子耳号") + private String electronicTags; + + /** 品种id */ + @Excel(name = "品种id") + private Long varietyId; + + /** 品种 */ + @Excel(name = "品种") + private String variety; + + /** 羊只类别 */ + @Excel(name = "羊只类别") + private String sheepCategory; + + /** 性别 */ + @Excel(name = "性别") + private Long gender; + + /** 生日 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "生日", width = 30, dateFormat = "yyyy-MM-dd") + private Date birthday; + + /** 月龄 */ + @Excel(name = "月龄") + private Long monthAge; + + /** 出生体重 */ + @Excel(name = "出生体重") + private BigDecimal birthWeight; + + /** 断奶日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "断奶日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date weaningDate; + + /** 断奶日龄 */ + @Excel(name = "断奶日龄") + private Long weaningDayAge; + + /** 断奶体重 */ + @Excel(name = "断奶体重") + private BigDecimal weaningWeight; + + /** 断奶日增重 */ + @Excel(name = "断奶日增重") + private BigDecimal weaningDailyGain; + + /** 当前体重 */ + @Excel(name = "当前体重") + private BigDecimal currentWeight; + + /** 配种状态id */ + @Excel(name = "配种状态id") + private Long breedingStatusId; + + /** 配种状态 */ + @Excel(name = "配种状态") + private String breedingStatus; + + /** 父号id */ + @Excel(name = "父号id") + private Long fatherId; + + /** 父号 */ + @Excel(name = "父号") + private String fatherEarNumber; + + /** 母号id */ + @Excel(name = "母号id") + private Long motherId; + + /** 母号 */ + @Excel(name = "母号") + private String motherEarNumber; + + /** 祖父id */ + @Excel(name = "祖父id") + private Long grandfatherId; + + /** 祖父 */ + @Excel(name = "祖父") + private String grandfatherEarNumber; + + /** 祖母id */ + @Excel(name = "祖母id") + private Long grandmotherId; + + /** 祖母 */ + @Excel(name = "祖母") + private String grandmotherEarNumber; + + /** 外祖父 */ + @Excel(name = "外祖父") + private String maternalGrandfatherEarNumber; + + /** 外祖母 */ + @Excel(name = "外祖母") + private String maternalGrandmotherEarNumber; + + /** 配种日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "配种日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date matingDate; + + /** 配种类型 */ + @Excel(name = "配种类型") + private Long matingTypeId; + + /** 孕检日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "孕检日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date pregnancyCheckDate; + + /** 产羔日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "产羔日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date lambingDate; + + /** 产羔时怀孕天数 */ + @Excel(name = "产羔时怀孕天数") + private Long lambingDay; + + /** 配种天数 */ + @Excel(name = "配种天数") + private Long matingDay; + + /** 怀孕天数 */ + @Excel(name = "怀孕天数") + private Long gestationDay; + + /** 预产日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "预产日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date expectedDate; + + /** 产后天数 */ + @Excel(name = "产后天数") + private Long postLambingDay; + + /** 泌乳天数 */ + @Excel(name = "泌乳天数") + private Long lactationDay; + + /** 空怀天数 */ + @Excel(name = "空怀天数") + private Long anestrusDay; + + /** 配种次数 */ + @Excel(name = "配种次数") + private Long matingCounts; + + /** 总配次数 */ + @Excel(name = "总配次数") + private Long matingTotal; + + /** 流产次数 */ + @Excel(name = "流产次数") + private Long miscarriageCounts; + + /** 备注 */ + @Excel(name = "备注") + private String comment; + + /** 是否性控 */ + @Excel(name = "是否性控") + private Long controlled; + + /** 体况评分 */ + @Excel(name = "体况评分") + private BigDecimal bodyConditionScore; + + /** 乳房评分 */ + @Excel(name = "乳房评分") + private Long udderScore; + + /** 入群来源 */ + @Excel(name = "入群来源") + private String source; + + /** 入群日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "入群日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date sourceDate; + + /** 来源牧场id */ + @Excel(name = "来源牧场id") + private Long sourceRanchId; + + /** 来源牧场 */ + @Excel(name = "来源牧场") + private String sourceRanch; + + /** 性欲情况 */ + @Excel(name = "性欲情况") + private String sexualStatus; + + /** 阴囊周长 */ + @Excel(name = "阴囊周长") + private BigDecimal scrotumCircumference; + + /** 采精时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "采精时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date spermCollectionTime; + + /** 精液量 */ + @Excel(name = "精液量") + private BigDecimal spermVolume; + + /** 精液活力 */ + @Excel(name = "精液活力") + private String spermVitality; + + /** 精液密度 */ + @Excel(name = "精液密度") + private String spermDensity; + + /** 精液品质 */ + @Excel(name = "精液品质") + private String semenQuality; + + /** 总配母羊数 */ + @Excel(name = "总配母羊数") + private Long totalMatedEwes; + + /** 总孕检母羊数 */ + @Excel(name = "总孕检母羊数") + private Long totalPregnantEwes; + + /** 本交孕检母羊数 */ + @Excel(name = "本交孕检母羊数") + private Long naturalPregnancyCheckEwes; + + /** 本交受孕率% */ + @Excel(name = "本交受孕率%") + private BigDecimal naturalConceptionRate; + + /** 人工孕检母羊数 */ + @Excel(name = "人工孕检母羊数") + private Long artificialPregnancyCheckEwes; + + /** 人工受孕率% */ + @Excel(name = "人工受孕率%") + private BigDecimal artificialConceptionRate; + + /** 公羊后代数 */ + @Excel(name = "公羊后代数") + private Long offspringCount; + + /** 多胎性 */ + @Excel(name = "多胎性") + private BigDecimal prolificacy; + + /** 是否删除 */ + private Long isDelete; + + // Getters and Setters + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getOrdinaryEarNumber() { + return ordinaryEarNumber; + } + + public void setOrdinaryEarNumber(String ordinaryEarNumber) { + this.ordinaryEarNumber = ordinaryEarNumber; + } + + public Long getRanchId() { + return ranchId; + } + + public void setRanchId(Long ranchId) { + this.ranchId = ranchId; + } + + public String getRanchName() { + return ranchName; + } + + public void setRanchName(String ranchName) { + this.ranchName = ranchName; + } + + public Long getSheepfoldId() { + return sheepfoldId; + } + + public void setSheepfoldId(Long sheepfoldId) { + this.sheepfoldId = sheepfoldId; + } + + public String getSheepfoldName() { + return sheepfoldName; + } + + public void setSheepfoldName(String sheepfoldName) { + this.sheepfoldName = sheepfoldName; + } + + public String getElectronicTags() { + return electronicTags; + } + + public void setElectronicTags(String electronicTags) { + this.electronicTags = electronicTags; + } + + public Long getVarietyId() { + return varietyId; + } + + public void setVarietyId(Long varietyId) { + this.varietyId = varietyId; + } + + public String getVariety() { + return variety; + } + + public void setVariety(String variety) { + this.variety = variety; + } + + public String getSheepCategory() { + return sheepCategory; + } + + public void setSheepCategory(String sheepCategory) { + this.sheepCategory = sheepCategory; + } + + public Long getGender() { + return gender; + } + + public void setGender(Long gender) { + this.gender = gender; + } + + public Date getBirthday() { + return birthday; + } + + public void setBirthday(Date birthday) { + this.birthday = birthday; + } + + public Long getMonthAge() { + return monthAge; + } + + public void setMonthAge(Long monthAge) { + this.monthAge = monthAge; + } + + public BigDecimal getBirthWeight() { + return birthWeight; + } + + public void setBirthWeight(BigDecimal birthWeight) { + this.birthWeight = birthWeight; + } + + public Date getWeaningDate() { + return weaningDate; + } + + public void setWeaningDate(Date weaningDate) { + this.weaningDate = weaningDate; + } + + public Long getWeaningDayAge() { + return weaningDayAge; + } + + public void setWeaningDayAge(Long weaningDayAge) { + this.weaningDayAge = weaningDayAge; + } + + public BigDecimal getWeaningWeight() { + return weaningWeight; + } + + public void setWeaningWeight(BigDecimal weaningWeight) { + this.weaningWeight = weaningWeight; + } + + public BigDecimal getWeaningDailyGain() { + return weaningDailyGain; + } + + public void setWeaningDailyGain(BigDecimal weaningDailyGain) { + this.weaningDailyGain = weaningDailyGain; + } + + public BigDecimal getCurrentWeight() { + return currentWeight; + } + + public void setCurrentWeight(BigDecimal currentWeight) { + this.currentWeight = currentWeight; + } + + public Long getBreedingStatusId() { + return breedingStatusId; + } + + public void setBreedingStatusId(Long breedingStatusId) { + this.breedingStatusId = breedingStatusId; + } + + public String getBreedingStatus() { + return breedingStatus; + } + + public void setBreedingStatus(String breedingStatus) { + this.breedingStatus = breedingStatus; + } + + public Long getFatherId() { + return fatherId; + } + + public void setFatherId(Long fatherId) { + this.fatherId = fatherId; + } + + public String getFatherEarNumber() { + return fatherEarNumber; + } + + public void setFatherEarNumber(String fatherEarNumber) { + this.fatherEarNumber = fatherEarNumber; + } + + public Long getMotherId() { + return motherId; + } + + public void setMotherId(Long motherId) { + this.motherId = motherId; + } + + public String getMotherEarNumber() { + return motherEarNumber; + } + + public void setMotherEarNumber(String motherEarNumber) { + this.motherEarNumber = motherEarNumber; + } + + public Long getGrandfatherId() { + return grandfatherId; + } + + public void setGrandfatherId(Long grandfatherId) { + this.grandfatherId = grandfatherId; + } + + public String getGrandfatherEarNumber() { + return grandfatherEarNumber; + } + + public void setGrandfatherEarNumber(String grandfatherEarNumber) { + this.grandfatherEarNumber = grandfatherEarNumber; + } + + public Long getGrandmotherId() { + return grandmotherId; + } + + public void setGrandmotherId(Long grandmotherId) { + this.grandmotherId = grandmotherId; + } + + public String getGrandmotherEarNumber() { + return grandmotherEarNumber; + } + + public void setGrandmotherEarNumber(String grandmotherEarNumber) { + this.grandmotherEarNumber = grandmotherEarNumber; + } + + public String getMaternalGrandfatherEarNumber() { + return maternalGrandfatherEarNumber; + } + + public void setMaternalGrandfatherEarNumber(String maternalGrandfatherEarNumber) { + this.maternalGrandfatherEarNumber = maternalGrandfatherEarNumber; + } + + public String getMaternalGrandmotherEarNumber() { + return maternalGrandmotherEarNumber; + } + + public void setMaternalGrandmotherEarNumber(String maternalGrandmotherEarNumber) { + this.maternalGrandmotherEarNumber = maternalGrandmotherEarNumber; + } + + public Date getMatingDate() { + return matingDate; + } + + public void setMatingDate(Date matingDate) { + this.matingDate = matingDate; + } + + public Long getMatingTypeId() { + return matingTypeId; + } + + public void setMatingTypeId(Long matingTypeId) { + this.matingTypeId = matingTypeId; + } + + public Date getPregnancyCheckDate() { + return pregnancyCheckDate; + } + + public void setPregnancyCheckDate(Date pregnancyCheckDate) { + this.pregnancyCheckDate = pregnancyCheckDate; + } + + public Date getLambingDate() { + return lambingDate; + } + + public void setLambingDate(Date lambingDate) { + this.lambingDate = lambingDate; + } + + public Long getLambingDay() { + return lambingDay; + } + + public void setLambingDay(Long lambingDay) { + this.lambingDay = lambingDay; + } + + public Long getMatingDay() { + return matingDay; + } + + public void setMatingDay(Long matingDay) { + this.matingDay = matingDay; + } + + public Long getGestationDay() { + return gestationDay; + } + + public void setGestationDay(Long gestationDay) { + this.gestationDay = gestationDay; + } + + public Date getExpectedDate() { + return expectedDate; + } + + public void setExpectedDate(Date expectedDate) { + this.expectedDate = expectedDate; + } + + public Long getPostLambingDay() { + return postLambingDay; + } + + public void setPostLambingDay(Long postLambingDay) { + this.postLambingDay = postLambingDay; + } + + public Long getLactationDay() { + return lactationDay; + } + + public void setLactationDay(Long lactationDay) { + this.lactationDay = lactationDay; + } + + public Long getAnestrusDay() { + return anestrusDay; + } + + public void setAnestrusDay(Long anestrusDay) { + this.anestrusDay = anestrusDay; + } + + public Long getMatingCounts() { + return matingCounts; + } + + public void setMatingCounts(Long matingCounts) { + this.matingCounts = matingCounts; + } + + public Long getMatingTotal() { + return matingTotal; + } + + public void setMatingTotal(Long matingTotal) { + this.matingTotal = matingTotal; + } + + public Long getMiscarriageCounts() { + return miscarriageCounts; + } + + public void setMiscarriageCounts(Long miscarriageCounts) { + this.miscarriageCounts = miscarriageCounts; + } + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public Long getControlled() { + return controlled; + } + + public void setControlled(Long controlled) { + this.controlled = controlled; + } + + public BigDecimal getBodyConditionScore() { + return bodyConditionScore; + } + + public void setBodyConditionScore(BigDecimal bodyConditionScore) { + this.bodyConditionScore = bodyConditionScore; + } + + public Long getUdderScore() { + return udderScore; + } + + public void setUdderScore(Long udderScore) { + this.udderScore = udderScore; + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source; + } + + public Date getSourceDate() { + return sourceDate; + } + + public void setSourceDate(Date sourceDate) { + this.sourceDate = sourceDate; + } + + public Long getSourceRanchId() { + return sourceRanchId; + } + + public void setSourceRanchId(Long sourceRanchId) { + this.sourceRanchId = sourceRanchId; + } + + public String getSourceRanch() { + return sourceRanch; + } + + public void setSourceRanch(String sourceRanch) { + this.sourceRanch = sourceRanch; + } + + public String getSexualStatus() { + return sexualStatus; + } + + public void setSexualStatus(String sexualStatus) { + this.sexualStatus = sexualStatus; + } + + public BigDecimal getScrotumCircumference() { + return scrotumCircumference; + } + + public void setScrotumCircumference(BigDecimal scrotumCircumference) { + this.scrotumCircumference = scrotumCircumference; + } + + public Date getSpermCollectionTime() { + return spermCollectionTime; + } + + public void setSpermCollectionTime(Date spermCollectionTime) { + this.spermCollectionTime = spermCollectionTime; + } + + public BigDecimal getSpermVolume() { + return spermVolume; + } + + public void setSpermVolume(BigDecimal spermVolume) { + this.spermVolume = spermVolume; + } + + public String getSpermVitality() { + return spermVitality; + } + + public void setSpermVitality(String spermVitality) { + this.spermVitality = spermVitality; + } + + public String getSpermDensity() { + return spermDensity; + } + + public void setSpermDensity(String spermDensity) { + this.spermDensity = spermDensity; + } + + public String getSemenQuality() { + return semenQuality; + } + + public void setSemenQuality(String semenQuality) { + this.semenQuality = semenQuality; + } + + public Long getTotalMatedEwes() { + return totalMatedEwes; + } + + public void setTotalMatedEwes(Long totalMatedEwes) { + this.totalMatedEwes = totalMatedEwes; + } + + public Long getTotalPregnantEwes() { + return totalPregnantEwes; + } + + public void setTotalPregnantEwes(Long totalPregnantEwes) { + this.totalPregnantEwes = totalPregnantEwes; + } + + public Long getNaturalPregnancyCheckEwes() { + return naturalPregnancyCheckEwes; + } + + public void setNaturalPregnancyCheckEwes(Long naturalPregnancyCheckEwes) { + this.naturalPregnancyCheckEwes = naturalPregnancyCheckEwes; + } + + public BigDecimal getNaturalConceptionRate() { + return naturalConceptionRate; + } + + public void setNaturalConceptionRate(BigDecimal naturalConceptionRate) { + this.naturalConceptionRate = naturalConceptionRate; + } + + public Long getArtificialPregnancyCheckEwes() { + return artificialPregnancyCheckEwes; + } + + public void setArtificialPregnancyCheckEwes(Long artificialPregnancyCheckEwes) { + this.artificialPregnancyCheckEwes = artificialPregnancyCheckEwes; + } + + public BigDecimal getArtificialConceptionRate() { + return artificialConceptionRate; + } + + public void setArtificialConceptionRate(BigDecimal artificialConceptionRate) { + this.artificialConceptionRate = artificialConceptionRate; + } + + public Long getOffspringCount() { + return offspringCount; + } + + public void setOffspringCount(Long offspringCount) { + this.offspringCount = offspringCount; + } + + public BigDecimal getProlificacy() { + return prolificacy; + } + + public void setProlificacy(BigDecimal prolificacy) { + this.prolificacy = prolificacy; + } + + public Long getIsDelete() { + return isDelete; + } + + public void setIsDelete(Long isDelete) { + this.isDelete = isDelete; + } + + @Override + public String toString() { + return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("ordinaryEarNumber", getOrdinaryEarNumber()) + .append("ranchId", getRanchId()) + .append("ranchName", getRanchName()) + .append("sheepfoldId", getSheepfoldId()) + .append("sheepfoldName", getSheepfoldName()) + .append("electronicTags", getElectronicTags()) + .append("varietyId", getVarietyId()) + .append("variety", getVariety()) + .append("sheepCategory", getSheepCategory()) + .append("gender", getGender()) + .append("birthday", getBirthday()) + .append("monthAge", getMonthAge()) + .append("birthWeight", getBirthWeight()) + .append("weaningDate", getWeaningDate()) + .append("weaningDayAge", getWeaningDayAge()) + .append("weaningWeight", getWeaningWeight()) + .append("weaningDailyGain", getWeaningDailyGain()) + .append("currentWeight", getCurrentWeight()) + .append("breedingStatusId", getBreedingStatusId()) + .append("breedingStatus", getBreedingStatus()) + .append("sexualStatus", getSexualStatus()) + .append("scrotumCircumference", getScrotumCircumference()) + .append("spermCollectionTime", getSpermCollectionTime()) + .append("spermVolume", getSpermVolume()) + .append("spermVitality", getSpermVitality()) + .append("spermDensity", getSpermDensity()) + .append("semenQuality", getSemenQuality()) + .append("totalMatedEwes", getTotalMatedEwes()) + .append("totalPregnantEwes", getTotalPregnantEwes()) + .append("naturalPregnancyCheckEwes", getNaturalPregnancyCheckEwes()) + .append("naturalConceptionRate", getNaturalConceptionRate()) + .append("artificialPregnancyCheckEwes", getArtificialPregnancyCheckEwes()) + .append("artificialConceptionRate", getArtificialConceptionRate()) + .append("offspringCount", getOffspringCount()) + .append("prolificacy", getProlificacy()) + .toString(); + } +} \ No newline at end of file diff --git a/zhyc-module/src/main/java/com/zhyc/module/base/mapper/ViewBreedRamFileMapper.java b/zhyc-module/src/main/java/com/zhyc/module/base/mapper/ViewBreedRamFileMapper.java new file mode 100644 index 0000000..1544f6d --- /dev/null +++ b/zhyc-module/src/main/java/com/zhyc/module/base/mapper/ViewBreedRamFileMapper.java @@ -0,0 +1,69 @@ +package com.zhyc.module.base.mapper; + +import java.util.List; +import com.zhyc.module.base.domain.ViewBreedRamFile; + +/** + * 种公羊档案视图Mapper接口 + * + * @author zhyc + * @date 2025-07-29 + */ +public interface ViewBreedRamFileMapper +{ + /** + * 查询种公羊档案视图 + * + * @param id 种公羊档案主键 + * @return 种公羊档案视图 + */ + public ViewBreedRamFile selectViewBreedRamFileById(Long id); + + /** + * 查询种公羊档案视图列表 + * + * @param viewBreedRamFile 种公羊档案视图 + * @return 种公羊档案视图集合 + */ + public List selectViewBreedRamFileList(ViewBreedRamFile viewBreedRamFile); + + /** + * 根据普通耳号查询种公羊档案视图 + * + * @param ordinaryEarNumber 普通耳号 + * @return 种公羊档案视图 + */ + public ViewBreedRamFile selectViewBreedRamFileByOrdinaryEarNumber(String ordinaryEarNumber); + + /** + * 根据牧场ID查询种公羊档案视图列表 + * + * @param ranchId 牧场ID + * @return 种公羊档案视图集合 + */ + public List selectViewBreedRamFileListByRanchId(Long ranchId); + + /** + * 根据羊舍ID查询种公羊档案视图列表 + * + * @param sheepfoldId 羊舍ID + * @return 种公羊档案视图集合 + */ + public List selectViewBreedRamFileListBySheepfoldId(Long sheepfoldId); + + /** + * 查询核心羊群种公羊档案视图列表 + * + * @param viewBreedRamFile 种公羊档案视图 + * @return 种公羊档案视图集合 + */ + public List selectCoreFlockViewBreedRamFileList(ViewBreedRamFile viewBreedRamFile); + + /** + * 查询种用种公羊档案视图列表 + * + * @param viewBreedRamFile 种公羊档案视图 + * @return 种公羊档案视图集合 + */ + public List selectBreedingUseViewBreedRamFileList(ViewBreedRamFile viewBreedRamFile); +} \ No newline at end of file diff --git a/zhyc-module/src/main/resources/mapper/base/ViewBreedRamFileMapper.xml b/zhyc-module/src/main/resources/mapper/base/ViewBreedRamFileMapper.xml new file mode 100644 index 0000000..aa3398d --- /dev/null +++ b/zhyc-module/src/main/resources/mapper/base/ViewBreedRamFileMapper.xml @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select * from view_breed_ram_file + + + + + + + + + + + + + + + + + \ No newline at end of file