|
|
|
package com.zhonglai.luhui.runingfish.domain.farming;
|
|
|
|
|
|
|
|
|
|
|
|
import com.zhonglai.luhui.runingfish.dto.BaseBean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author: fuchao
|
|
|
|
* @Description :水产病害报表
|
|
|
|
* @Date: Created in 13:51 2016/12/6
|
|
|
|
* @Modified By:
|
|
|
|
*/
|
|
|
|
public class FarmingDiseaseReport extends BaseBean {
|
|
|
|
|
|
|
|
private Integer id; //主键id
|
|
|
|
private Integer userId; //用户id
|
|
|
|
private String userName; //用户登录名
|
|
|
|
private Integer surveyDate; //调查日期
|
|
|
|
private String surveyAddress; //调查地点
|
|
|
|
private String surveyName; //调查人
|
|
|
|
private String waterAssessment; //水质评估
|
|
|
|
private String farmlandPesticide; //周围农田施药
|
|
|
|
private String waterDeep; //水深(米)
|
|
|
|
private String size; //面积(亩)
|
|
|
|
private String situationAlgae; //水中藻类情况
|
|
|
|
private String situationRainfall; //降雨情况
|
|
|
|
private String situationBottom; //底质情况
|
|
|
|
private String waterColour; //水色和透明度
|
|
|
|
private String ph; //pH值
|
|
|
|
private String oxy; //溶解氧含量
|
|
|
|
private String ammonia; //氨氮(mg/L)
|
|
|
|
private String nitrite; //亚硝酸盐(mg/L)
|
|
|
|
private String waterTemperature; //水温
|
|
|
|
private String sulfide; //硫化物
|
|
|
|
private String clearDate; //上次清塘时间
|
|
|
|
private String clearMethods; //清塘方法
|
|
|
|
private String grazingSpecies; //品种
|
|
|
|
private String grazingSource; //来源
|
|
|
|
private String density; //投放密度(尾/亩)
|
|
|
|
private String feedName; //饵料品牌和型号
|
|
|
|
private String feedProvide; //日均投放量(kg)
|
|
|
|
private String diseaseDate; //发病时间
|
|
|
|
private String diseaseSpecies; //发病鱼种
|
|
|
|
private String diseaseSpecifications; //发病规格
|
|
|
|
private String dailyDeath; //日死亡量
|
|
|
|
private String totalDeath; //累积死亡量
|
|
|
|
private String medicineUsed; //曾用药、剂量
|
|
|
|
private String medicineEffect; //曾用药效果评估
|
|
|
|
private String diseaseCause; //疑似病因
|
|
|
|
private String remark; //备注
|
|
|
|
private String contactName; //联系人
|
|
|
|
private String contactPhone; //联系电话
|
|
|
|
private String contactAddress; //联系地址
|
|
|
|
private Integer createTime; //创建时间
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getUserId() {
|
|
|
|
return userId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUserId(Integer userId) {
|
|
|
|
this.userId = userId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUserName() {
|
|
|
|
return userName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUserName(String userName) {
|
|
|
|
this.userName = userName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getSurveyDate() {
|
|
|
|
return surveyDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSurveyDate(Integer surveyDate) {
|
|
|
|
this.surveyDate = surveyDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSurveyAddress() {
|
|
|
|
return surveyAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSurveyAddress(String surveyAddress) {
|
|
|
|
this.surveyAddress = surveyAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSurveyName() {
|
|
|
|
return surveyName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSurveyName(String surveyName) {
|
|
|
|
this.surveyName = surveyName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWaterAssessment() {
|
|
|
|
return waterAssessment;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWaterAssessment(String waterAssessment) {
|
|
|
|
this.waterAssessment = waterAssessment;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFarmlandPesticide() {
|
|
|
|
return farmlandPesticide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFarmlandPesticide(String farmlandPesticide) {
|
|
|
|
this.farmlandPesticide = farmlandPesticide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWaterDeep() {
|
|
|
|
return waterDeep;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWaterDeep(String waterDeep) {
|
|
|
|
this.waterDeep = waterDeep;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSize() {
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSize(String size) {
|
|
|
|
this.size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSituationAlgae() {
|
|
|
|
return situationAlgae;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSituationAlgae(String situationAlgae) {
|
|
|
|
this.situationAlgae = situationAlgae;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSituationRainfall() {
|
|
|
|
return situationRainfall;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSituationRainfall(String situationRainfall) {
|
|
|
|
this.situationRainfall = situationRainfall;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSituationBottom() {
|
|
|
|
return situationBottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSituationBottom(String situationBottom) {
|
|
|
|
this.situationBottom = situationBottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWaterColour() {
|
|
|
|
return waterColour;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWaterColour(String waterColour) {
|
|
|
|
this.waterColour = waterColour;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPh() {
|
|
|
|
return ph;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPh(String ph) {
|
|
|
|
this.ph = ph;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOxy() {
|
|
|
|
return oxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOxy(String oxy) {
|
|
|
|
this.oxy = oxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAmmonia() {
|
|
|
|
return ammonia;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAmmonia(String ammonia) {
|
|
|
|
this.ammonia = ammonia;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getNitrite() {
|
|
|
|
return nitrite;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setNitrite(String nitrite) {
|
|
|
|
this.nitrite = nitrite;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWaterTemperature() {
|
|
|
|
return waterTemperature;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWaterTemperature(String waterTemperature) {
|
|
|
|
this.waterTemperature = waterTemperature;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSulfide() {
|
|
|
|
return sulfide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSulfide(String sulfide) {
|
|
|
|
this.sulfide = sulfide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getClearDate() {
|
|
|
|
return clearDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setClearDate(String clearDate) {
|
|
|
|
this.clearDate = clearDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getClearMethods() {
|
|
|
|
return clearMethods;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setClearMethods(String clearMethods) {
|
|
|
|
this.clearMethods = clearMethods;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getGrazingSpecies() {
|
|
|
|
return grazingSpecies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setGrazingSpecies(String grazingSpecies) {
|
|
|
|
this.grazingSpecies = grazingSpecies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getGrazingSource() {
|
|
|
|
return grazingSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setGrazingSource(String grazingSource) {
|
|
|
|
this.grazingSource = grazingSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDensity() {
|
|
|
|
return density;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDensity(String density) {
|
|
|
|
this.density = density;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFeedName() {
|
|
|
|
return feedName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFeedName(String feedName) {
|
|
|
|
this.feedName = feedName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFeedProvide() {
|
|
|
|
return feedProvide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFeedProvide(String feedProvide) {
|
|
|
|
this.feedProvide = feedProvide;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDiseaseDate() {
|
|
|
|
return diseaseDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDiseaseDate(String diseaseDate) {
|
|
|
|
this.diseaseDate = diseaseDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDiseaseSpecies() {
|
|
|
|
return diseaseSpecies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDiseaseSpecies(String diseaseSpecies) {
|
|
|
|
this.diseaseSpecies = diseaseSpecies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDiseaseSpecifications() {
|
|
|
|
return diseaseSpecifications;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDiseaseSpecifications(String diseaseSpecifications) {
|
|
|
|
this.diseaseSpecifications = diseaseSpecifications;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDailyDeath() {
|
|
|
|
return dailyDeath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDailyDeath(String dailyDeath) {
|
|
|
|
this.dailyDeath = dailyDeath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTotalDeath() {
|
|
|
|
return totalDeath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTotalDeath(String totalDeath) {
|
|
|
|
this.totalDeath = totalDeath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMedicineUsed() {
|
|
|
|
return medicineUsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMedicineUsed(String medicineUsed) {
|
|
|
|
this.medicineUsed = medicineUsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMedicineEffect() {
|
|
|
|
return medicineEffect;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMedicineEffect(String medicineEffect) {
|
|
|
|
this.medicineEffect = medicineEffect;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDiseaseCause() {
|
|
|
|
return diseaseCause;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDiseaseCause(String diseaseCause) {
|
|
|
|
this.diseaseCause = diseaseCause;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRemark() {
|
|
|
|
return remark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
|
this.remark = remark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactName() {
|
|
|
|
return contactName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactName(String contactName) {
|
|
|
|
this.contactName = contactName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactPhone() {
|
|
|
|
return contactPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactPhone(String contactPhone) {
|
|
|
|
this.contactPhone = contactPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactAddress() {
|
|
|
|
return contactAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactAddress(String contactAddress) {
|
|
|
|
this.contactAddress = contactAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getCreateTime() {
|
|
|
|
return createTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreateTime(Integer createTime) {
|
|
|
|
this.createTime = createTime;
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|