作者 钟来

生成所有业务接口

要显示太多修改。

为保证性能只显示 15 of 15+ 个文件。

@@ -28,5 +28,9 @@ @@ -28,5 +28,9 @@
28 <groupId>com.zhonglai.luhui</groupId> 28 <groupId>com.zhonglai.luhui</groupId>
29 <artifactId>ruoyi-common</artifactId> 29 <artifactId>ruoyi-common</artifactId>
30 </dependency> 30 </dependency>
  31 + <dependency>
  32 + <groupId>com.zhonglai.luhui</groupId>
  33 + <artifactId>lh-domain</artifactId>
  34 + </dependency>
31 </dependencies> 35 </dependencies>
32 </project> 36 </project>
1 package com.zhonglai.luhui.dao.dto; 1 package com.zhonglai.luhui.dao.dto;
2 2
  3 +import com.fasterxml.jackson.annotation.JsonFormat;
3 import com.ruoyi.common.utils.DateUtils; 4 import com.ruoyi.common.utils.DateUtils;
4 import com.ruoyi.common.utils.StringUtils; 5 import com.ruoyi.common.utils.StringUtils;
5 import com.zhonglai.luhui.dao.sql.MyBaseEntity; 6 import com.zhonglai.luhui.dao.sql.MyBaseEntity;
@@ -109,6 +110,11 @@ public class PublicSQL { @@ -109,6 +110,11 @@ public class PublicSQL {
109 values.append( ","); 110 values.append( ",");
110 } 111 }
111 stringBuffer.append( "`"+Sqlutil.toUnderScoreCase(field.getName())+"`"); 112 stringBuffer.append( "`"+Sqlutil.toUnderScoreCase(field.getName())+"`");
  113 + if (field.isAnnotationPresent(JsonFormat.class) && value instanceof Date)
  114 + {
  115 + JsonFormat jsonFormat = field.getAnnotation(JsonFormat.class);
  116 + value = DateUtils.parseDateToStr(jsonFormat.pattern(), (Date) value);
  117 + }
112 values.append( "'"+ escapeSql(value+"")+"'"); 118 values.append( "'"+ escapeSql(value+"")+"'");
113 } 119 }
114 } catch (NoSuchMethodException e) { 120 } catch (NoSuchMethodException e) {
@@ -172,6 +178,11 @@ public class PublicSQL { @@ -172,6 +178,11 @@ public class PublicSQL {
172 values += ","; 178 values += ",";
173 } 179 }
174 sql.append("`"+Sqlutil.toUnderScoreCase(field.getName())+"`"); 180 sql.append("`"+Sqlutil.toUnderScoreCase(field.getName())+"`");
  181 + if (field.isAnnotationPresent(JsonFormat.class) && value instanceof Date)
  182 + {
  183 + JsonFormat jsonFormat = field.getAnnotation(JsonFormat.class);
  184 + value = DateUtils.parseDateToStr(jsonFormat.pattern(), (Date) value);
  185 + }
175 values += "'"+escapeSql(value+"")+"'"; 186 values += "'"+escapeSql(value+"")+"'";
176 } 187 }
177 } catch (NoSuchMethodException e) { 188 } catch (NoSuchMethodException e) {
@@ -236,6 +247,7 @@ public class PublicSQL { @@ -236,6 +247,7 @@ public class PublicSQL {
236 { 247 {
237 sql += ","; 248 sql += ",";
238 } 249 }
  250 +
239 sql += "`"+Sqlutil.toUnderScoreCase(field.getName())+"`"+"='"+escapeSql(value+"")+"'"; 251 sql += "`"+Sqlutil.toUnderScoreCase(field.getName())+"`"+"='"+escapeSql(value+"")+"'";
240 j++; 252 j++;
241 253
@@ -2,6 +2,7 @@ package com.zhonglai.luhui.dao.service.impl; @@ -2,6 +2,7 @@ package com.zhonglai.luhui.dao.service.impl;
2 2
3 import com.alibaba.fastjson2.JSON; 3 import com.alibaba.fastjson2.JSON;
4 import com.alibaba.fastjson2.JSONObject; 4 import com.alibaba.fastjson2.JSONObject;
  5 +import com.alibaba.fastjson2.JSONReader;
5 import com.zhonglai.luhui.dao.mapper.PublicMapper; 6 import com.zhonglai.luhui.dao.mapper.PublicMapper;
6 import com.zhonglai.luhui.dao.service.PublicService; 7 import com.zhonglai.luhui.dao.service.PublicService;
7 import org.springframework.beans.factory.annotation.Autowired; 8 import org.springframework.beans.factory.annotation.Autowired;
@@ -98,7 +99,7 @@ public class PublicServiceImpl implements PublicService { @@ -98,7 +99,7 @@ public class PublicServiceImpl implements PublicService {
98 return null; 99 return null;
99 } 100 }
100 101
101 - return JSONObject.parseObject(JSON.toJSONString(object),clas); 102 + return JSONObject.parseObject(JSON.toJSONString(object),clas, JSONReader.Feature.SupportSmartMatch);
102 } 103 }
103 104
104 /** 105 /**
1 package com.zhonglai.luhui.dao.service.impl; 1 package com.zhonglai.luhui.dao.service.impl;
2 2
  3 +import com.alibaba.fastjson2.JSONObject;
  4 +import com.alibaba.fastjson2.JSONReader;
3 import com.ruoyi.common.utils.bean.MapToObjectConverter; 5 import com.ruoyi.common.utils.bean.MapToObjectConverter;
4 import com.zhonglai.luhui.dao.mapper.PublicMapper; 6 import com.zhonglai.luhui.dao.mapper.PublicMapper;
5 import com.zhonglai.luhui.dao.service.PublicTemplateService; 7 import com.zhonglai.luhui.dao.service.PublicTemplateService;
@@ -22,20 +24,13 @@ public class PublicTemplateServiceImpl implements PublicTemplateService { @@ -22,20 +24,13 @@ public class PublicTemplateServiceImpl implements PublicTemplateService {
22 public <T> List<T> selectTList(T t) { 24 public <T> List<T> selectTList(T t) {
23 List<Map<String,Object>> list = publicMapper.selectTList(t); 25 List<Map<String,Object>> list = publicMapper.selectTList(t);
24 26
25 - List<T> rList = null; 27 + List<T> rList = new ArrayList<>();
26 if(null != list && list.size() != 0) 28 if(null != list && list.size() != 0)
27 { 29 {
28 rList = new ArrayList<T>(); 30 rList = new ArrayList<T>();
29 for (Map<String,Object> map:list) 31 for (Map<String,Object> map:list)
30 { 32 {
31 - T at = null;  
32 - try {  
33 - at = (T) MapToObjectConverter.convert(map,t.getClass());  
34 - } catch (IllegalAccessException e) {  
35 - e.printStackTrace();  
36 - } catch (InstantiationException e) {  
37 - e.printStackTrace();  
38 - } 33 + T at = (T) JSONObject.parseObject(JSONObject.toJSONString(map),t.getClass(), JSONReader.Feature.SupportSmartMatch);
39 rList.add(at); 34 rList.add(at);
40 } 35 }
41 } 36 }
@@ -47,14 +42,7 @@ public class PublicTemplateServiceImpl implements PublicTemplateService { @@ -47,14 +42,7 @@ public class PublicTemplateServiceImpl implements PublicTemplateService {
47 Map<String,Object> object = publicMapper.getObject(clas,"id", String.valueOf(id)); 42 Map<String,Object> object = publicMapper.getObject(clas,"id", String.valueOf(id));
48 if(null != object) 43 if(null != object)
49 { 44 {
50 - try {  
51 - return MapToObjectConverter.convert(object,clas);  
52 - } catch (IllegalAccessException e) {  
53 - e.printStackTrace();  
54 - } catch (InstantiationException e) {  
55 - e.printStackTrace();  
56 - }  
57 - 45 + return JSONObject.parseObject(JSONObject.toJSONString(object),clas, JSONReader.Feature.SupportSmartMatch);
58 } 46 }
59 return null; 47 return null;
60 } 48 }
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project xmlns="http://maven.apache.org/POM/4.0.0"
  3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5 + <modelVersion>4.0.0</modelVersion>
  6 + <parent>
  7 + <groupId>com.zhonglai.luhui</groupId>
  8 + <artifactId>lh-jar</artifactId>
  9 + <version>1.0.0</version>
  10 + </parent>
  11 +
  12 + <artifactId>lh-domain</artifactId>
  13 +
  14 + <properties>
  15 + <maven.compiler.source>8</maven.compiler.source>
  16 + <maven.compiler.target>8</maven.compiler.target>
  17 + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18 + </properties>
  19 +
  20 + <dependencies>
  21 + <!-- 文档 -->
  22 + <dependency>
  23 + <groupId>com.github.xiaoymin</groupId>
  24 + <artifactId>knife4j-spring-boot-starter</artifactId>
  25 + </dependency>
  26 + <!-- 常用工具类 -->
  27 + <dependency>
  28 + <groupId>org.apache.commons</groupId>
  29 + <artifactId>commons-lang3</artifactId>
  30 + </dependency>
  31 + <!-- JSON工具类 -->
  32 + <dependency>
  33 + <groupId>com.fasterxml.jackson.core</groupId>
  34 + <artifactId>jackson-databind</artifactId>
  35 + </dependency>
  36 + <dependency>
  37 + <groupId>com.zhonglai.luhui</groupId>
  38 + <artifactId>lh-common-util</artifactId>
  39 + </dependency>
  40 +
  41 + </dependencies>
  42 +</project>
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 标粗结转成本对象 cb_bold_closing_cost
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("标粗结转成本")
  20 +public class CbBoldClosingCost extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖造次 */
  33 + @ApiModelProperty(value="养殖造次")
  34 + @Excel(name = "养殖造次")
  35 + private String breedingRound;
  36 +
  37 + /** 养殖区域 */
  38 + @ApiModelProperty(value="养殖区域")
  39 + @Excel(name = "养殖区域")
  40 + private String breedingArea;
  41 +
  42 + /** 塘口/箱号 */
  43 + @ApiModelProperty(value="塘口/箱号")
  44 + @Excel(name = "塘口/箱号")
  45 + private String pondOrBox;
  46 +
  47 + /** 养殖品种 */
  48 + @ApiModelProperty(value="养殖品种")
  49 + @Excel(name = "养殖品种")
  50 + private String breedingSpecies;
  51 +
  52 + /** 分苗日期 */
  53 + @JsonFormat(pattern = "yyyy-MM-dd")
  54 + @ApiModelProperty(value="分苗日期")
  55 + @Excel(name = "分苗日期", width = 30, dateFormat = "yyyy-MM-dd")
  56 + private Date seedlingInfoDate;
  57 +
  58 + /** 分苗数量 */
  59 + @ApiModelProperty(value="分苗数量")
  60 + @Excel(name = "分苗数量")
  61 + private BigDecimal seedlingQuantity;
  62 +
  63 + /** 分苗重量 */
  64 + @ApiModelProperty(value="分苗重量")
  65 + @Excel(name = "分苗重量")
  66 + private BigDecimal seedlingWeight;
  67 +
  68 + /** 分苗规格 */
  69 + @ApiModelProperty(value="分苗规格")
  70 + @Excel(name = "分苗规格")
  71 + private String seedlingSpecification;
  72 +
  73 + /** 变动成本 */
  74 + @ApiModelProperty(value="变动成本")
  75 + @Excel(name = "变动成本")
  76 + private BigDecimal variableCosts;
  77 +
  78 + /** 种苗成本 */
  79 + @ApiModelProperty(value="种苗成本")
  80 + @Excel(name = "种苗成本")
  81 + private BigDecimal seedlingCost;
  82 +
  83 + /** 饲料数量(kg) */
  84 + @ApiModelProperty(value="饲料数量(kg)")
  85 + @Excel(name = "饲料数量(kg)")
  86 + private BigDecimal feedQuantity;
  87 +
  88 + /** 饲料金额 */
  89 + @ApiModelProperty(value="饲料金额")
  90 + @Excel(name = "饲料金额")
  91 + private BigDecimal feedAmount;
  92 +
  93 + /** 动保 */
  94 + @ApiModelProperty(value="动保")
  95 + @Excel(name = "动保")
  96 + private BigDecimal animalHealthProtection;
  97 +
  98 + /** 电费 */
  99 + @ApiModelProperty(value="电费")
  100 + @Excel(name = "电费")
  101 + private BigDecimal electricityFee;
  102 +
  103 + /** 人工 */
  104 + @ApiModelProperty(value="人工")
  105 + @Excel(name = "人工")
  106 + private BigDecimal laborCost;
  107 +
  108 + /** 低值易耗品 */
  109 + @ApiModelProperty(value="低值易耗品")
  110 + @Excel(name = "低值易耗品")
  111 + private BigDecimal consumablesCost;
  112 +
  113 + /** 拉网费 */
  114 + @ApiModelProperty(value="拉网费")
  115 + @Excel(name = "拉网费")
  116 + private BigDecimal nettingFee;
  117 +
  118 + /** 折旧与摊销 */
  119 + @ApiModelProperty(value="折旧与摊销")
  120 + @Excel(name = "折旧与摊销")
  121 + private BigDecimal depreciationAndAmortization;
  122 +
  123 + /** 修理费 */
  124 + @ApiModelProperty(value="修理费")
  125 + @Excel(name = "修理费")
  126 + private BigDecimal repairFee;
  127 +
  128 + /** 燃料费 */
  129 + @ApiModelProperty(value="燃料费")
  130 + @Excel(name = "燃料费")
  131 + private BigDecimal fuelFee;
  132 +
  133 + /** 租赁费 */
  134 + @ApiModelProperty(value="租赁费")
  135 + @Excel(name = "租赁费")
  136 + private BigDecimal leaseFee;
  137 +
  138 + /** 其他公摊 */
  139 + @ApiModelProperty(value="其他公摊")
  140 + @Excel(name = "其他公摊")
  141 + private BigDecimal otherSharedCosts;
  142 +
  143 + /** 定额费用 */
  144 + @ApiModelProperty(value="定额费用")
  145 + @Excel(name = "定额费用")
  146 + private BigDecimal fixedCosts;
  147 +
  148 + /** 网箱折旧费 */
  149 + @ApiModelProperty(value="网箱折旧费")
  150 + @Excel(name = "网箱折旧费")
  151 + private BigDecimal cageDepreciationFee;
  152 +
  153 + /** 网箱管理费 */
  154 + @ApiModelProperty(value="网箱管理费")
  155 + @Excel(name = "网箱管理费")
  156 + private BigDecimal cageManagementFee;
  157 +
  158 + /** 海域费 */
  159 + @ApiModelProperty(value="海域费")
  160 + @Excel(name = "海域费")
  161 + private BigDecimal seaAreaFee;
  162 +
  163 + /** 塘租 */
  164 + @ApiModelProperty(value="塘租")
  165 + @Excel(name = "塘租")
  166 + private BigDecimal pondRent;
  167 +
  168 + /** 合计 */
  169 + @ApiModelProperty(value="合计")
  170 + @Excel(name = "合计")
  171 + private BigDecimal totalCost;
  172 +
  173 + public void setId(Integer id)
  174 + {
  175 + this.id = id;
  176 + }
  177 +
  178 + public Integer getId()
  179 + {
  180 + return id;
  181 + }
  182 + public void setFarmName(String farmName)
  183 + {
  184 + this.farmName = farmName;
  185 + }
  186 +
  187 + public String getFarmName()
  188 + {
  189 + return farmName;
  190 + }
  191 + public void setBreedingRound(String breedingRound)
  192 + {
  193 + this.breedingRound = breedingRound;
  194 + }
  195 +
  196 + public String getBreedingRound()
  197 + {
  198 + return breedingRound;
  199 + }
  200 + public void setBreedingArea(String breedingArea)
  201 + {
  202 + this.breedingArea = breedingArea;
  203 + }
  204 +
  205 + public String getBreedingArea()
  206 + {
  207 + return breedingArea;
  208 + }
  209 + public void setPondOrBox(String pondOrBox)
  210 + {
  211 + this.pondOrBox = pondOrBox;
  212 + }
  213 +
  214 + public String getPondOrBox()
  215 + {
  216 + return pondOrBox;
  217 + }
  218 + public void setBreedingSpecies(String breedingSpecies)
  219 + {
  220 + this.breedingSpecies = breedingSpecies;
  221 + }
  222 +
  223 + public String getBreedingSpecies()
  224 + {
  225 + return breedingSpecies;
  226 + }
  227 + public void setSeedlingInfoDate(Date seedlingInfoDate)
  228 + {
  229 + this.seedlingInfoDate = seedlingInfoDate;
  230 + }
  231 +
  232 + public Date getSeedlingInfoDate()
  233 + {
  234 + return seedlingInfoDate;
  235 + }
  236 + public void setSeedlingQuantity(BigDecimal seedlingQuantity)
  237 + {
  238 + this.seedlingQuantity = seedlingQuantity;
  239 + }
  240 +
  241 + public BigDecimal getSeedlingQuantity()
  242 + {
  243 + return seedlingQuantity;
  244 + }
  245 + public void setSeedlingWeight(BigDecimal seedlingWeight)
  246 + {
  247 + this.seedlingWeight = seedlingWeight;
  248 + }
  249 +
  250 + public BigDecimal getSeedlingWeight()
  251 + {
  252 + return seedlingWeight;
  253 + }
  254 + public void setSeedlingSpecification(String seedlingSpecification)
  255 + {
  256 + this.seedlingSpecification = seedlingSpecification;
  257 + }
  258 +
  259 + public String getSeedlingSpecification()
  260 + {
  261 + return seedlingSpecification;
  262 + }
  263 + public void setVariableCosts(BigDecimal variableCosts)
  264 + {
  265 + this.variableCosts = variableCosts;
  266 + }
  267 +
  268 + public BigDecimal getVariableCosts()
  269 + {
  270 + return variableCosts;
  271 + }
  272 + public void setSeedlingCost(BigDecimal seedlingCost)
  273 + {
  274 + this.seedlingCost = seedlingCost;
  275 + }
  276 +
  277 + public BigDecimal getSeedlingCost()
  278 + {
  279 + return seedlingCost;
  280 + }
  281 + public void setFeedQuantity(BigDecimal feedQuantity)
  282 + {
  283 + this.feedQuantity = feedQuantity;
  284 + }
  285 +
  286 + public BigDecimal getFeedQuantity()
  287 + {
  288 + return feedQuantity;
  289 + }
  290 + public void setFeedAmount(BigDecimal feedAmount)
  291 + {
  292 + this.feedAmount = feedAmount;
  293 + }
  294 +
  295 + public BigDecimal getFeedAmount()
  296 + {
  297 + return feedAmount;
  298 + }
  299 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  300 + {
  301 + this.animalHealthProtection = animalHealthProtection;
  302 + }
  303 +
  304 + public BigDecimal getAnimalHealthProtection()
  305 + {
  306 + return animalHealthProtection;
  307 + }
  308 + public void setElectricityFee(BigDecimal electricityFee)
  309 + {
  310 + this.electricityFee = electricityFee;
  311 + }
  312 +
  313 + public BigDecimal getElectricityFee()
  314 + {
  315 + return electricityFee;
  316 + }
  317 + public void setLaborCost(BigDecimal laborCost)
  318 + {
  319 + this.laborCost = laborCost;
  320 + }
  321 +
  322 + public BigDecimal getLaborCost()
  323 + {
  324 + return laborCost;
  325 + }
  326 + public void setConsumablesCost(BigDecimal consumablesCost)
  327 + {
  328 + this.consumablesCost = consumablesCost;
  329 + }
  330 +
  331 + public BigDecimal getConsumablesCost()
  332 + {
  333 + return consumablesCost;
  334 + }
  335 + public void setNettingFee(BigDecimal nettingFee)
  336 + {
  337 + this.nettingFee = nettingFee;
  338 + }
  339 +
  340 + public BigDecimal getNettingFee()
  341 + {
  342 + return nettingFee;
  343 + }
  344 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  345 + {
  346 + this.depreciationAndAmortization = depreciationAndAmortization;
  347 + }
  348 +
  349 + public BigDecimal getDepreciationAndAmortization()
  350 + {
  351 + return depreciationAndAmortization;
  352 + }
  353 + public void setRepairFee(BigDecimal repairFee)
  354 + {
  355 + this.repairFee = repairFee;
  356 + }
  357 +
  358 + public BigDecimal getRepairFee()
  359 + {
  360 + return repairFee;
  361 + }
  362 + public void setFuelFee(BigDecimal fuelFee)
  363 + {
  364 + this.fuelFee = fuelFee;
  365 + }
  366 +
  367 + public BigDecimal getFuelFee()
  368 + {
  369 + return fuelFee;
  370 + }
  371 + public void setLeaseFee(BigDecimal leaseFee)
  372 + {
  373 + this.leaseFee = leaseFee;
  374 + }
  375 +
  376 + public BigDecimal getLeaseFee()
  377 + {
  378 + return leaseFee;
  379 + }
  380 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  381 + {
  382 + this.otherSharedCosts = otherSharedCosts;
  383 + }
  384 +
  385 + public BigDecimal getOtherSharedCosts()
  386 + {
  387 + return otherSharedCosts;
  388 + }
  389 + public void setFixedCosts(BigDecimal fixedCosts)
  390 + {
  391 + this.fixedCosts = fixedCosts;
  392 + }
  393 +
  394 + public BigDecimal getFixedCosts()
  395 + {
  396 + return fixedCosts;
  397 + }
  398 + public void setCageDepreciationFee(BigDecimal cageDepreciationFee)
  399 + {
  400 + this.cageDepreciationFee = cageDepreciationFee;
  401 + }
  402 +
  403 + public BigDecimal getCageDepreciationFee()
  404 + {
  405 + return cageDepreciationFee;
  406 + }
  407 + public void setCageManagementFee(BigDecimal cageManagementFee)
  408 + {
  409 + this.cageManagementFee = cageManagementFee;
  410 + }
  411 +
  412 + public BigDecimal getCageManagementFee()
  413 + {
  414 + return cageManagementFee;
  415 + }
  416 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  417 + {
  418 + this.seaAreaFee = seaAreaFee;
  419 + }
  420 +
  421 + public BigDecimal getSeaAreaFee()
  422 + {
  423 + return seaAreaFee;
  424 + }
  425 + public void setPondRent(BigDecimal pondRent)
  426 + {
  427 + this.pondRent = pondRent;
  428 + }
  429 +
  430 + public BigDecimal getPondRent()
  431 + {
  432 + return pondRent;
  433 + }
  434 + public void setTotalCost(BigDecimal totalCost)
  435 + {
  436 + this.totalCost = totalCost;
  437 + }
  438 +
  439 + public BigDecimal getTotalCost()
  440 + {
  441 + return totalCost;
  442 + }
  443 +
  444 + @Override
  445 + public String toString() {
  446 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  447 + .append("id", getId())
  448 + .append("farmName", getFarmName())
  449 + .append("breedingRound", getBreedingRound())
  450 + .append("breedingArea", getBreedingArea())
  451 + .append("pondOrBox", getPondOrBox())
  452 + .append("breedingSpecies", getBreedingSpecies())
  453 + .append("seedlingInfoDate", getSeedlingInfoDate())
  454 + .append("seedlingQuantity", getSeedlingQuantity())
  455 + .append("seedlingWeight", getSeedlingWeight())
  456 + .append("seedlingSpecification", getSeedlingSpecification())
  457 + .append("variableCosts", getVariableCosts())
  458 + .append("seedlingCost", getSeedlingCost())
  459 + .append("feedQuantity", getFeedQuantity())
  460 + .append("feedAmount", getFeedAmount())
  461 + .append("animalHealthProtection", getAnimalHealthProtection())
  462 + .append("electricityFee", getElectricityFee())
  463 + .append("laborCost", getLaborCost())
  464 + .append("consumablesCost", getConsumablesCost())
  465 + .append("nettingFee", getNettingFee())
  466 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  467 + .append("repairFee", getRepairFee())
  468 + .append("fuelFee", getFuelFee())
  469 + .append("leaseFee", getLeaseFee())
  470 + .append("otherSharedCosts", getOtherSharedCosts())
  471 + .append("fixedCosts", getFixedCosts())
  472 + .append("cageDepreciationFee", getCageDepreciationFee())
  473 + .append("cageManagementFee", getCageManagementFee())
  474 + .append("seaAreaFee", getSeaAreaFee())
  475 + .append("pondRent", getPondRent())
  476 + .append("totalCost", getTotalCost())
  477 + .toString();
  478 + }
  479 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 标粗动态成本对象 cb_bold_dynamic_cost
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("标粗动态成本")
  20 +public class CbBoldDynamicCost extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖造次 */
  33 + @ApiModelProperty(value="养殖造次")
  34 + @Excel(name = "养殖造次")
  35 + private String breedingRound;
  36 +
  37 + /** 养殖区域 */
  38 + @ApiModelProperty(value="养殖区域")
  39 + @Excel(name = "养殖区域")
  40 + private String breedingArea;
  41 +
  42 + /** 养殖品种 */
  43 + @ApiModelProperty(value="养殖品种")
  44 + @Excel(name = "养殖品种")
  45 + private String breedingSpecies;
  46 +
  47 + /** 放苗批次 */
  48 + @ApiModelProperty(value="放苗批次")
  49 + @Excel(name = "放苗批次")
  50 + private String seedlingBatch;
  51 +
  52 + /** 塘口/箱号 */
  53 + @ApiModelProperty(value="塘口/箱号")
  54 + @Excel(name = "塘口/箱号")
  55 + private String pondOrBox;
  56 +
  57 + /** 日期 */
  58 + @JsonFormat(pattern = "yyyy-MM-dd")
  59 + @ApiModelProperty(value="日期")
  60 + @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
  61 + private Date date;
  62 +
  63 + /** 变动成本 */
  64 + @ApiModelProperty(value="变动成本")
  65 + @Excel(name = "变动成本")
  66 + private BigDecimal variableCosts;
  67 +
  68 + /** 种苗数量(尾) */
  69 + @ApiModelProperty(value="种苗数量(尾)")
  70 + @Excel(name = "种苗数量(尾)")
  71 + private BigDecimal seedlingQuantity;
  72 +
  73 + /** 种苗成本 */
  74 + @ApiModelProperty(value="种苗成本")
  75 + @Excel(name = "种苗成本")
  76 + private BigDecimal seedlingCost;
  77 +
  78 + /** 饲料数量(kg) */
  79 + @ApiModelProperty(value="饲料数量(kg)")
  80 + @Excel(name = "饲料数量(kg)")
  81 + private BigDecimal feedQuantity;
  82 +
  83 + /** 饲料金额 */
  84 + @ApiModelProperty(value="饲料金额")
  85 + @Excel(name = "饲料金额")
  86 + private BigDecimal feedAmount;
  87 +
  88 + /** 动保 */
  89 + @ApiModelProperty(value="动保")
  90 + @Excel(name = "动保")
  91 + private BigDecimal animalHealthProtection;
  92 +
  93 + /** 电费 */
  94 + @ApiModelProperty(value="电费")
  95 + @Excel(name = "电费")
  96 + private BigDecimal electricityFee;
  97 +
  98 + /** 人工 */
  99 + @ApiModelProperty(value="人工")
  100 + @Excel(name = "人工")
  101 + private BigDecimal laborCost;
  102 +
  103 + /** 低值易耗品 */
  104 + @ApiModelProperty(value="低值易耗品")
  105 + @Excel(name = "低值易耗品")
  106 + private BigDecimal consumablesCost;
  107 +
  108 + /** 拉网费 */
  109 + @ApiModelProperty(value="拉网费")
  110 + @Excel(name = "拉网费")
  111 + private BigDecimal nettingFee;
  112 +
  113 + /** 折旧与摊销 */
  114 + @ApiModelProperty(value="折旧与摊销")
  115 + @Excel(name = "折旧与摊销")
  116 + private BigDecimal depreciationAndAmortization;
  117 +
  118 + /** 修理费 */
  119 + @ApiModelProperty(value="修理费")
  120 + @Excel(name = "修理费")
  121 + private BigDecimal repairFee;
  122 +
  123 + /** 燃料费 */
  124 + @ApiModelProperty(value="燃料费")
  125 + @Excel(name = "燃料费")
  126 + private BigDecimal fuelFee;
  127 +
  128 + /** 租赁费 */
  129 + @ApiModelProperty(value="租赁费")
  130 + @Excel(name = "租赁费")
  131 + private BigDecimal leaseFee;
  132 +
  133 + /** 其他公摊 */
  134 + @ApiModelProperty(value="其他公摊")
  135 + @Excel(name = "其他公摊")
  136 + private BigDecimal otherSharedCosts;
  137 +
  138 + /** 定额费用 */
  139 + @ApiModelProperty(value="定额费用")
  140 + @Excel(name = "定额费用")
  141 + private BigDecimal fixedCosts;
  142 +
  143 + /** 网箱折旧 */
  144 + @ApiModelProperty(value="网箱折旧")
  145 + @Excel(name = "网箱折旧")
  146 + private BigDecimal netCageDepreciation;
  147 +
  148 + /** 网箱管理费 */
  149 + @ApiModelProperty(value="网箱管理费")
  150 + @Excel(name = "网箱管理费")
  151 + private BigDecimal netCageManagementFee;
  152 +
  153 + /** 海域费 */
  154 + @ApiModelProperty(value="海域费")
  155 + @Excel(name = "海域费")
  156 + private BigDecimal seaAreaFee;
  157 +
  158 + /** 塘租 */
  159 + @ApiModelProperty(value="塘租")
  160 + @Excel(name = "塘租")
  161 + private BigDecimal pondRent;
  162 +
  163 + /** 成本合计 */
  164 + @ApiModelProperty(value="成本合计")
  165 + @Excel(name = "成本合计")
  166 + private BigDecimal totalCost;
  167 +
  168 + /** 分箱/塘成本 */
  169 + @ApiModelProperty(value="分箱/塘成本")
  170 + @Excel(name = "分箱/塘成本")
  171 + private BigDecimal costPerBoxOrPond;
  172 +
  173 + /** 损失成本 */
  174 + @ApiModelProperty(value="损失成本")
  175 + @Excel(name = "损失成本")
  176 + private BigDecimal lossCost;
  177 +
  178 + /** 成本总合计 */
  179 + @ApiModelProperty(value="成本总合计")
  180 + @Excel(name = "成本总合计")
  181 + private BigDecimal totalCostSummary;
  182 +
  183 + public void setId(Integer id)
  184 + {
  185 + this.id = id;
  186 + }
  187 +
  188 + public Integer getId()
  189 + {
  190 + return id;
  191 + }
  192 + public void setFarmName(String farmName)
  193 + {
  194 + this.farmName = farmName;
  195 + }
  196 +
  197 + public String getFarmName()
  198 + {
  199 + return farmName;
  200 + }
  201 + public void setBreedingRound(String breedingRound)
  202 + {
  203 + this.breedingRound = breedingRound;
  204 + }
  205 +
  206 + public String getBreedingRound()
  207 + {
  208 + return breedingRound;
  209 + }
  210 + public void setBreedingArea(String breedingArea)
  211 + {
  212 + this.breedingArea = breedingArea;
  213 + }
  214 +
  215 + public String getBreedingArea()
  216 + {
  217 + return breedingArea;
  218 + }
  219 + public void setBreedingSpecies(String breedingSpecies)
  220 + {
  221 + this.breedingSpecies = breedingSpecies;
  222 + }
  223 +
  224 + public String getBreedingSpecies()
  225 + {
  226 + return breedingSpecies;
  227 + }
  228 + public void setSeedlingBatch(String seedlingBatch)
  229 + {
  230 + this.seedlingBatch = seedlingBatch;
  231 + }
  232 +
  233 + public String getSeedlingBatch()
  234 + {
  235 + return seedlingBatch;
  236 + }
  237 + public void setPondOrBox(String pondOrBox)
  238 + {
  239 + this.pondOrBox = pondOrBox;
  240 + }
  241 +
  242 + public String getPondOrBox()
  243 + {
  244 + return pondOrBox;
  245 + }
  246 + public void setDate(Date date)
  247 + {
  248 + this.date = date;
  249 + }
  250 +
  251 + public Date getDate()
  252 + {
  253 + return date;
  254 + }
  255 + public void setVariableCosts(BigDecimal variableCosts)
  256 + {
  257 + this.variableCosts = variableCosts;
  258 + }
  259 +
  260 + public BigDecimal getVariableCosts()
  261 + {
  262 + return variableCosts;
  263 + }
  264 + public void setSeedlingQuantity(BigDecimal seedlingQuantity)
  265 + {
  266 + this.seedlingQuantity = seedlingQuantity;
  267 + }
  268 +
  269 + public BigDecimal getSeedlingQuantity()
  270 + {
  271 + return seedlingQuantity;
  272 + }
  273 + public void setSeedlingCost(BigDecimal seedlingCost)
  274 + {
  275 + this.seedlingCost = seedlingCost;
  276 + }
  277 +
  278 + public BigDecimal getSeedlingCost()
  279 + {
  280 + return seedlingCost;
  281 + }
  282 + public void setFeedQuantity(BigDecimal feedQuantity)
  283 + {
  284 + this.feedQuantity = feedQuantity;
  285 + }
  286 +
  287 + public BigDecimal getFeedQuantity()
  288 + {
  289 + return feedQuantity;
  290 + }
  291 + public void setFeedAmount(BigDecimal feedAmount)
  292 + {
  293 + this.feedAmount = feedAmount;
  294 + }
  295 +
  296 + public BigDecimal getFeedAmount()
  297 + {
  298 + return feedAmount;
  299 + }
  300 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  301 + {
  302 + this.animalHealthProtection = animalHealthProtection;
  303 + }
  304 +
  305 + public BigDecimal getAnimalHealthProtection()
  306 + {
  307 + return animalHealthProtection;
  308 + }
  309 + public void setElectricityFee(BigDecimal electricityFee)
  310 + {
  311 + this.electricityFee = electricityFee;
  312 + }
  313 +
  314 + public BigDecimal getElectricityFee()
  315 + {
  316 + return electricityFee;
  317 + }
  318 + public void setLaborCost(BigDecimal laborCost)
  319 + {
  320 + this.laborCost = laborCost;
  321 + }
  322 +
  323 + public BigDecimal getLaborCost()
  324 + {
  325 + return laborCost;
  326 + }
  327 + public void setConsumablesCost(BigDecimal consumablesCost)
  328 + {
  329 + this.consumablesCost = consumablesCost;
  330 + }
  331 +
  332 + public BigDecimal getConsumablesCost()
  333 + {
  334 + return consumablesCost;
  335 + }
  336 + public void setNettingFee(BigDecimal nettingFee)
  337 + {
  338 + this.nettingFee = nettingFee;
  339 + }
  340 +
  341 + public BigDecimal getNettingFee()
  342 + {
  343 + return nettingFee;
  344 + }
  345 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  346 + {
  347 + this.depreciationAndAmortization = depreciationAndAmortization;
  348 + }
  349 +
  350 + public BigDecimal getDepreciationAndAmortization()
  351 + {
  352 + return depreciationAndAmortization;
  353 + }
  354 + public void setRepairFee(BigDecimal repairFee)
  355 + {
  356 + this.repairFee = repairFee;
  357 + }
  358 +
  359 + public BigDecimal getRepairFee()
  360 + {
  361 + return repairFee;
  362 + }
  363 + public void setFuelFee(BigDecimal fuelFee)
  364 + {
  365 + this.fuelFee = fuelFee;
  366 + }
  367 +
  368 + public BigDecimal getFuelFee()
  369 + {
  370 + return fuelFee;
  371 + }
  372 + public void setLeaseFee(BigDecimal leaseFee)
  373 + {
  374 + this.leaseFee = leaseFee;
  375 + }
  376 +
  377 + public BigDecimal getLeaseFee()
  378 + {
  379 + return leaseFee;
  380 + }
  381 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  382 + {
  383 + this.otherSharedCosts = otherSharedCosts;
  384 + }
  385 +
  386 + public BigDecimal getOtherSharedCosts()
  387 + {
  388 + return otherSharedCosts;
  389 + }
  390 + public void setFixedCosts(BigDecimal fixedCosts)
  391 + {
  392 + this.fixedCosts = fixedCosts;
  393 + }
  394 +
  395 + public BigDecimal getFixedCosts()
  396 + {
  397 + return fixedCosts;
  398 + }
  399 + public void setNetCageDepreciation(BigDecimal netCageDepreciation)
  400 + {
  401 + this.netCageDepreciation = netCageDepreciation;
  402 + }
  403 +
  404 + public BigDecimal getNetCageDepreciation()
  405 + {
  406 + return netCageDepreciation;
  407 + }
  408 + public void setNetCageManagementFee(BigDecimal netCageManagementFee)
  409 + {
  410 + this.netCageManagementFee = netCageManagementFee;
  411 + }
  412 +
  413 + public BigDecimal getNetCageManagementFee()
  414 + {
  415 + return netCageManagementFee;
  416 + }
  417 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  418 + {
  419 + this.seaAreaFee = seaAreaFee;
  420 + }
  421 +
  422 + public BigDecimal getSeaAreaFee()
  423 + {
  424 + return seaAreaFee;
  425 + }
  426 + public void setPondRent(BigDecimal pondRent)
  427 + {
  428 + this.pondRent = pondRent;
  429 + }
  430 +
  431 + public BigDecimal getPondRent()
  432 + {
  433 + return pondRent;
  434 + }
  435 + public void setTotalCost(BigDecimal totalCost)
  436 + {
  437 + this.totalCost = totalCost;
  438 + }
  439 +
  440 + public BigDecimal getTotalCost()
  441 + {
  442 + return totalCost;
  443 + }
  444 + public void setCostPerBoxOrPond(BigDecimal costPerBoxOrPond)
  445 + {
  446 + this.costPerBoxOrPond = costPerBoxOrPond;
  447 + }
  448 +
  449 + public BigDecimal getCostPerBoxOrPond()
  450 + {
  451 + return costPerBoxOrPond;
  452 + }
  453 + public void setLossCost(BigDecimal lossCost)
  454 + {
  455 + this.lossCost = lossCost;
  456 + }
  457 +
  458 + public BigDecimal getLossCost()
  459 + {
  460 + return lossCost;
  461 + }
  462 + public void setTotalCostSummary(BigDecimal totalCostSummary)
  463 + {
  464 + this.totalCostSummary = totalCostSummary;
  465 + }
  466 +
  467 + public BigDecimal getTotalCostSummary()
  468 + {
  469 + return totalCostSummary;
  470 + }
  471 +
  472 + @Override
  473 + public String toString() {
  474 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  475 + .append("id", getId())
  476 + .append("farmName", getFarmName())
  477 + .append("breedingRound", getBreedingRound())
  478 + .append("breedingArea", getBreedingArea())
  479 + .append("breedingSpecies", getBreedingSpecies())
  480 + .append("seedlingBatch", getSeedlingBatch())
  481 + .append("pondOrBox", getPondOrBox())
  482 + .append("date", getDate())
  483 + .append("variableCosts", getVariableCosts())
  484 + .append("seedlingQuantity", getSeedlingQuantity())
  485 + .append("seedlingCost", getSeedlingCost())
  486 + .append("feedQuantity", getFeedQuantity())
  487 + .append("feedAmount", getFeedAmount())
  488 + .append("animalHealthProtection", getAnimalHealthProtection())
  489 + .append("electricityFee", getElectricityFee())
  490 + .append("laborCost", getLaborCost())
  491 + .append("consumablesCost", getConsumablesCost())
  492 + .append("nettingFee", getNettingFee())
  493 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  494 + .append("repairFee", getRepairFee())
  495 + .append("fuelFee", getFuelFee())
  496 + .append("leaseFee", getLeaseFee())
  497 + .append("otherSharedCosts", getOtherSharedCosts())
  498 + .append("fixedCosts", getFixedCosts())
  499 + .append("netCageDepreciation", getNetCageDepreciation())
  500 + .append("netCageManagementFee", getNetCageManagementFee())
  501 + .append("seaAreaFee", getSeaAreaFee())
  502 + .append("pondRent", getPondRent())
  503 + .append("totalCost", getTotalCost())
  504 + .append("costPerBoxOrPond", getCostPerBoxOrPond())
  505 + .append("lossCost", getLossCost())
  506 + .append("totalCostSummary", getTotalCostSummary())
  507 + .toString();
  508 + }
  509 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 养成动态成本对象 cb_development_dynamic_cost
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("养成动态成本")
  20 +public class CbDevelopmentDynamicCost extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖造次 */
  33 + @ApiModelProperty(value="养殖造次")
  34 + @Excel(name = "养殖造次")
  35 + private String breedingRound;
  36 +
  37 + /** 养殖区域 */
  38 + @ApiModelProperty(value="养殖区域")
  39 + @Excel(name = "养殖区域")
  40 + private String breedingArea;
  41 +
  42 + /** 养殖品种 */
  43 + @ApiModelProperty(value="养殖品种")
  44 + @Excel(name = "养殖品种")
  45 + private String breedingSpecies;
  46 +
  47 + /** 塘口/箱号 */
  48 + @ApiModelProperty(value="塘口/箱号")
  49 + @Excel(name = "塘口/箱号")
  50 + private String pondOrBox;
  51 +
  52 + /** 日期 */
  53 + @JsonFormat(pattern = "yyyy-MM-dd")
  54 + @ApiModelProperty(value="日期")
  55 + @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
  56 + private Date date;
  57 +
  58 + /** 分苗数量 */
  59 + @ApiModelProperty(value="分苗数量")
  60 + @Excel(name = "分苗数量")
  61 + private BigDecimal seedlingQuantity;
  62 +
  63 + /** 分苗重量 */
  64 + @ApiModelProperty(value="分苗重量")
  65 + @Excel(name = "分苗重量")
  66 + private BigDecimal seedlingWeight;
  67 +
  68 + /** 标粗结转成本 */
  69 + @ApiModelProperty(value="标粗结转成本")
  70 + @Excel(name = "标粗结转成本")
  71 + private BigDecimal boldClosingCost;
  72 +
  73 + /** 变动成本 */
  74 + @ApiModelProperty(value="变动成本")
  75 + @Excel(name = "变动成本")
  76 + private BigDecimal variableCosts;
  77 +
  78 + /** 种苗数量(尾) */
  79 + @ApiModelProperty(value="种苗数量(尾)")
  80 + @Excel(name = "种苗数量(尾)")
  81 + private Long seedlingCount;
  82 +
  83 + /** 种苗成本 */
  84 + @ApiModelProperty(value="种苗成本")
  85 + @Excel(name = "种苗成本")
  86 + private BigDecimal seedlingCost;
  87 +
  88 + /** 饲料重量(kg) */
  89 + @ApiModelProperty(value="饲料重量(kg)")
  90 + @Excel(name = "饲料重量(kg)")
  91 + private BigDecimal feedWeight;
  92 +
  93 + /** 饲料金额 */
  94 + @ApiModelProperty(value="饲料金额")
  95 + @Excel(name = "饲料金额")
  96 + private BigDecimal feedAmount;
  97 +
  98 + /** 动保 */
  99 + @ApiModelProperty(value="动保")
  100 + @Excel(name = "动保")
  101 + private BigDecimal animalHealthProtection;
  102 +
  103 + /** 电费 */
  104 + @ApiModelProperty(value="电费")
  105 + @Excel(name = "电费")
  106 + private BigDecimal electricityFee;
  107 +
  108 + /** 人工 */
  109 + @ApiModelProperty(value="人工")
  110 + @Excel(name = "人工")
  111 + private BigDecimal laborCost;
  112 +
  113 + /** 低值易耗品 */
  114 + @ApiModelProperty(value="低值易耗品")
  115 + @Excel(name = "低值易耗品")
  116 + private BigDecimal consumablesCost;
  117 +
  118 + /** 拉网费 */
  119 + @ApiModelProperty(value="拉网费")
  120 + @Excel(name = "拉网费")
  121 + private BigDecimal nettingFee;
  122 +
  123 + /** 折旧与摊销 */
  124 + @ApiModelProperty(value="折旧与摊销")
  125 + @Excel(name = "折旧与摊销")
  126 + private BigDecimal depreciationAndAmortization;
  127 +
  128 + /** 修理费 */
  129 + @ApiModelProperty(value="修理费")
  130 + @Excel(name = "修理费")
  131 + private BigDecimal repairFee;
  132 +
  133 + /** 燃料费 */
  134 + @ApiModelProperty(value="燃料费")
  135 + @Excel(name = "燃料费")
  136 + private BigDecimal fuelFee;
  137 +
  138 + /** 租赁费 */
  139 + @ApiModelProperty(value="租赁费")
  140 + @Excel(name = "租赁费")
  141 + private BigDecimal leaseFee;
  142 +
  143 + /** 其他公摊 */
  144 + @ApiModelProperty(value="其他公摊")
  145 + @Excel(name = "其他公摊")
  146 + private BigDecimal otherSharedCosts;
  147 +
  148 + /** 定额费用 */
  149 + @ApiModelProperty(value="定额费用")
  150 + @Excel(name = "定额费用")
  151 + private BigDecimal fixedCosts;
  152 +
  153 + /** 网箱折旧费 */
  154 + @ApiModelProperty(value="网箱折旧费")
  155 + @Excel(name = "网箱折旧费")
  156 + private BigDecimal cageDepreciationFee;
  157 +
  158 + /** 网箱管理费 */
  159 + @ApiModelProperty(value="网箱管理费")
  160 + @Excel(name = "网箱管理费")
  161 + private BigDecimal cageManagementFee;
  162 +
  163 + /** 海域费 */
  164 + @ApiModelProperty(value="海域费")
  165 + @Excel(name = "海域费")
  166 + private BigDecimal seaAreaFee;
  167 +
  168 + /** 塘租 */
  169 + @ApiModelProperty(value="塘租")
  170 + @Excel(name = "塘租")
  171 + private BigDecimal pondRent;
  172 +
  173 + /** 成本合计 */
  174 + @ApiModelProperty(value="成本合计")
  175 + @Excel(name = "成本合计")
  176 + private BigDecimal costTotal;
  177 +
  178 + /** 移箱/塘数量 */
  179 + @ApiModelProperty(value="移箱/塘数量")
  180 + @Excel(name = "移箱/塘数量")
  181 + private BigDecimal moveBoxOrPondQuantity;
  182 +
  183 + /** 移箱/塘成本 */
  184 + @ApiModelProperty(value="移箱/塘成本")
  185 + @Excel(name = "移箱/塘成本")
  186 + private BigDecimal moveBoxOrPondCost;
  187 +
  188 + /** 损失成本 */
  189 + @ApiModelProperty(value="损失成本")
  190 + @Excel(name = "损失成本")
  191 + private BigDecimal lossCost;
  192 +
  193 + /** 收获结转成本 */
  194 + @ApiModelProperty(value="收获结转成本")
  195 + @Excel(name = "收获结转成本")
  196 + private BigDecimal harvestClosingCost;
  197 +
  198 + /** 成本总合计 */
  199 + @ApiModelProperty(value="成本总合计")
  200 + @Excel(name = "成本总合计")
  201 + private BigDecimal totalCostSummary;
  202 +
  203 + public void setId(Integer id)
  204 + {
  205 + this.id = id;
  206 + }
  207 +
  208 + public Integer getId()
  209 + {
  210 + return id;
  211 + }
  212 + public void setFarmName(String farmName)
  213 + {
  214 + this.farmName = farmName;
  215 + }
  216 +
  217 + public String getFarmName()
  218 + {
  219 + return farmName;
  220 + }
  221 + public void setBreedingRound(String breedingRound)
  222 + {
  223 + this.breedingRound = breedingRound;
  224 + }
  225 +
  226 + public String getBreedingRound()
  227 + {
  228 + return breedingRound;
  229 + }
  230 + public void setBreedingArea(String breedingArea)
  231 + {
  232 + this.breedingArea = breedingArea;
  233 + }
  234 +
  235 + public String getBreedingArea()
  236 + {
  237 + return breedingArea;
  238 + }
  239 + public void setBreedingSpecies(String breedingSpecies)
  240 + {
  241 + this.breedingSpecies = breedingSpecies;
  242 + }
  243 +
  244 + public String getBreedingSpecies()
  245 + {
  246 + return breedingSpecies;
  247 + }
  248 + public void setPondOrBox(String pondOrBox)
  249 + {
  250 + this.pondOrBox = pondOrBox;
  251 + }
  252 +
  253 + public String getPondOrBox()
  254 + {
  255 + return pondOrBox;
  256 + }
  257 + public void setDate(Date date)
  258 + {
  259 + this.date = date;
  260 + }
  261 +
  262 + public Date getDate()
  263 + {
  264 + return date;
  265 + }
  266 + public void setSeedlingQuantity(BigDecimal seedlingQuantity)
  267 + {
  268 + this.seedlingQuantity = seedlingQuantity;
  269 + }
  270 +
  271 + public BigDecimal getSeedlingQuantity()
  272 + {
  273 + return seedlingQuantity;
  274 + }
  275 + public void setSeedlingWeight(BigDecimal seedlingWeight)
  276 + {
  277 + this.seedlingWeight = seedlingWeight;
  278 + }
  279 +
  280 + public BigDecimal getSeedlingWeight()
  281 + {
  282 + return seedlingWeight;
  283 + }
  284 + public void setBoldClosingCost(BigDecimal boldClosingCost)
  285 + {
  286 + this.boldClosingCost = boldClosingCost;
  287 + }
  288 +
  289 + public BigDecimal getBoldClosingCost()
  290 + {
  291 + return boldClosingCost;
  292 + }
  293 + public void setVariableCosts(BigDecimal variableCosts)
  294 + {
  295 + this.variableCosts = variableCosts;
  296 + }
  297 +
  298 + public BigDecimal getVariableCosts()
  299 + {
  300 + return variableCosts;
  301 + }
  302 + public void setSeedlingCount(Long seedlingCount)
  303 + {
  304 + this.seedlingCount = seedlingCount;
  305 + }
  306 +
  307 + public Long getSeedlingCount()
  308 + {
  309 + return seedlingCount;
  310 + }
  311 + public void setSeedlingCost(BigDecimal seedlingCost)
  312 + {
  313 + this.seedlingCost = seedlingCost;
  314 + }
  315 +
  316 + public BigDecimal getSeedlingCost()
  317 + {
  318 + return seedlingCost;
  319 + }
  320 + public void setFeedWeight(BigDecimal feedWeight)
  321 + {
  322 + this.feedWeight = feedWeight;
  323 + }
  324 +
  325 + public BigDecimal getFeedWeight()
  326 + {
  327 + return feedWeight;
  328 + }
  329 + public void setFeedAmount(BigDecimal feedAmount)
  330 + {
  331 + this.feedAmount = feedAmount;
  332 + }
  333 +
  334 + public BigDecimal getFeedAmount()
  335 + {
  336 + return feedAmount;
  337 + }
  338 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  339 + {
  340 + this.animalHealthProtection = animalHealthProtection;
  341 + }
  342 +
  343 + public BigDecimal getAnimalHealthProtection()
  344 + {
  345 + return animalHealthProtection;
  346 + }
  347 + public void setElectricityFee(BigDecimal electricityFee)
  348 + {
  349 + this.electricityFee = electricityFee;
  350 + }
  351 +
  352 + public BigDecimal getElectricityFee()
  353 + {
  354 + return electricityFee;
  355 + }
  356 + public void setLaborCost(BigDecimal laborCost)
  357 + {
  358 + this.laborCost = laborCost;
  359 + }
  360 +
  361 + public BigDecimal getLaborCost()
  362 + {
  363 + return laborCost;
  364 + }
  365 + public void setConsumablesCost(BigDecimal consumablesCost)
  366 + {
  367 + this.consumablesCost = consumablesCost;
  368 + }
  369 +
  370 + public BigDecimal getConsumablesCost()
  371 + {
  372 + return consumablesCost;
  373 + }
  374 + public void setNettingFee(BigDecimal nettingFee)
  375 + {
  376 + this.nettingFee = nettingFee;
  377 + }
  378 +
  379 + public BigDecimal getNettingFee()
  380 + {
  381 + return nettingFee;
  382 + }
  383 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  384 + {
  385 + this.depreciationAndAmortization = depreciationAndAmortization;
  386 + }
  387 +
  388 + public BigDecimal getDepreciationAndAmortization()
  389 + {
  390 + return depreciationAndAmortization;
  391 + }
  392 + public void setRepairFee(BigDecimal repairFee)
  393 + {
  394 + this.repairFee = repairFee;
  395 + }
  396 +
  397 + public BigDecimal getRepairFee()
  398 + {
  399 + return repairFee;
  400 + }
  401 + public void setFuelFee(BigDecimal fuelFee)
  402 + {
  403 + this.fuelFee = fuelFee;
  404 + }
  405 +
  406 + public BigDecimal getFuelFee()
  407 + {
  408 + return fuelFee;
  409 + }
  410 + public void setLeaseFee(BigDecimal leaseFee)
  411 + {
  412 + this.leaseFee = leaseFee;
  413 + }
  414 +
  415 + public BigDecimal getLeaseFee()
  416 + {
  417 + return leaseFee;
  418 + }
  419 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  420 + {
  421 + this.otherSharedCosts = otherSharedCosts;
  422 + }
  423 +
  424 + public BigDecimal getOtherSharedCosts()
  425 + {
  426 + return otherSharedCosts;
  427 + }
  428 + public void setFixedCosts(BigDecimal fixedCosts)
  429 + {
  430 + this.fixedCosts = fixedCosts;
  431 + }
  432 +
  433 + public BigDecimal getFixedCosts()
  434 + {
  435 + return fixedCosts;
  436 + }
  437 + public void setCageDepreciationFee(BigDecimal cageDepreciationFee)
  438 + {
  439 + this.cageDepreciationFee = cageDepreciationFee;
  440 + }
  441 +
  442 + public BigDecimal getCageDepreciationFee()
  443 + {
  444 + return cageDepreciationFee;
  445 + }
  446 + public void setCageManagementFee(BigDecimal cageManagementFee)
  447 + {
  448 + this.cageManagementFee = cageManagementFee;
  449 + }
  450 +
  451 + public BigDecimal getCageManagementFee()
  452 + {
  453 + return cageManagementFee;
  454 + }
  455 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  456 + {
  457 + this.seaAreaFee = seaAreaFee;
  458 + }
  459 +
  460 + public BigDecimal getSeaAreaFee()
  461 + {
  462 + return seaAreaFee;
  463 + }
  464 + public void setPondRent(BigDecimal pondRent)
  465 + {
  466 + this.pondRent = pondRent;
  467 + }
  468 +
  469 + public BigDecimal getPondRent()
  470 + {
  471 + return pondRent;
  472 + }
  473 + public void setCostTotal(BigDecimal costTotal)
  474 + {
  475 + this.costTotal = costTotal;
  476 + }
  477 +
  478 + public BigDecimal getCostTotal()
  479 + {
  480 + return costTotal;
  481 + }
  482 + public void setMoveBoxOrPondQuantity(BigDecimal moveBoxOrPondQuantity)
  483 + {
  484 + this.moveBoxOrPondQuantity = moveBoxOrPondQuantity;
  485 + }
  486 +
  487 + public BigDecimal getMoveBoxOrPondQuantity()
  488 + {
  489 + return moveBoxOrPondQuantity;
  490 + }
  491 + public void setMoveBoxOrPondCost(BigDecimal moveBoxOrPondCost)
  492 + {
  493 + this.moveBoxOrPondCost = moveBoxOrPondCost;
  494 + }
  495 +
  496 + public BigDecimal getMoveBoxOrPondCost()
  497 + {
  498 + return moveBoxOrPondCost;
  499 + }
  500 + public void setLossCost(BigDecimal lossCost)
  501 + {
  502 + this.lossCost = lossCost;
  503 + }
  504 +
  505 + public BigDecimal getLossCost()
  506 + {
  507 + return lossCost;
  508 + }
  509 + public void setHarvestClosingCost(BigDecimal harvestClosingCost)
  510 + {
  511 + this.harvestClosingCost = harvestClosingCost;
  512 + }
  513 +
  514 + public BigDecimal getHarvestClosingCost()
  515 + {
  516 + return harvestClosingCost;
  517 + }
  518 + public void setTotalCostSummary(BigDecimal totalCostSummary)
  519 + {
  520 + this.totalCostSummary = totalCostSummary;
  521 + }
  522 +
  523 + public BigDecimal getTotalCostSummary()
  524 + {
  525 + return totalCostSummary;
  526 + }
  527 +
  528 + @Override
  529 + public String toString() {
  530 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  531 + .append("id", getId())
  532 + .append("farmName", getFarmName())
  533 + .append("breedingRound", getBreedingRound())
  534 + .append("breedingArea", getBreedingArea())
  535 + .append("breedingSpecies", getBreedingSpecies())
  536 + .append("pondOrBox", getPondOrBox())
  537 + .append("date", getDate())
  538 + .append("seedlingQuantity", getSeedlingQuantity())
  539 + .append("seedlingWeight", getSeedlingWeight())
  540 + .append("boldClosingCost", getBoldClosingCost())
  541 + .append("variableCosts", getVariableCosts())
  542 + .append("seedlingCount", getSeedlingCount())
  543 + .append("seedlingCost", getSeedlingCost())
  544 + .append("feedWeight", getFeedWeight())
  545 + .append("feedAmount", getFeedAmount())
  546 + .append("animalHealthProtection", getAnimalHealthProtection())
  547 + .append("electricityFee", getElectricityFee())
  548 + .append("laborCost", getLaborCost())
  549 + .append("consumablesCost", getConsumablesCost())
  550 + .append("nettingFee", getNettingFee())
  551 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  552 + .append("repairFee", getRepairFee())
  553 + .append("fuelFee", getFuelFee())
  554 + .append("leaseFee", getLeaseFee())
  555 + .append("otherSharedCosts", getOtherSharedCosts())
  556 + .append("fixedCosts", getFixedCosts())
  557 + .append("cageDepreciationFee", getCageDepreciationFee())
  558 + .append("cageManagementFee", getCageManagementFee())
  559 + .append("seaAreaFee", getSeaAreaFee())
  560 + .append("pondRent", getPondRent())
  561 + .append("costTotal", getCostTotal())
  562 + .append("moveBoxOrPondQuantity", getMoveBoxOrPondQuantity())
  563 + .append("moveBoxOrPondCost", getMoveBoxOrPondCost())
  564 + .append("lossCost", getLossCost())
  565 + .append("harvestClosingCost", getHarvestClosingCost())
  566 + .append("totalCostSummary", getTotalCostSummary())
  567 + .toString();
  568 + }
  569 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 养成存塘成本统计对象 cb_development_stock_cost_statistics
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("养成存塘成本统计")
  20 +public class CbDevelopmentStockCostStatistics extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖区域 */
  33 + @ApiModelProperty(value="养殖区域")
  34 + @Excel(name = "养殖区域")
  35 + private String breedingArea;
  36 +
  37 + /** 养殖造次 */
  38 + @ApiModelProperty(value="养殖造次")
  39 + @Excel(name = "养殖造次")
  40 + private String breedingRound;
  41 +
  42 + /** 养殖品类 */
  43 + @ApiModelProperty(value="养殖品类")
  44 + @Excel(name = "养殖品类")
  45 + private String breedingCategory;
  46 +
  47 + /** 养殖品种 */
  48 + @ApiModelProperty(value="养殖品种")
  49 + @Excel(name = "养殖品种")
  50 + private String breedingSpecies;
  51 +
  52 + /** 塘口/箱号 */
  53 + @ApiModelProperty(value="塘口/箱号")
  54 + @Excel(name = "塘口/箱号")
  55 + private String pondOrBox;
  56 +
  57 + /** 养殖阶段 */
  58 + @ApiModelProperty(value="养殖阶段")
  59 + @Excel(name = "养殖阶段")
  60 + private String breedingStage;
  61 +
  62 + /** 成本日期 */
  63 + @JsonFormat(pattern = "yyyy-MM-dd")
  64 + @ApiModelProperty(value="成本日期")
  65 + @Excel(name = "成本日期", width = 30, dateFormat = "yyyy-MM-dd")
  66 + private Date costDate;
  67 +
  68 + /** 变动成本 */
  69 + @ApiModelProperty(value="变动成本")
  70 + @Excel(name = "变动成本")
  71 + private BigDecimal variableCosts;
  72 +
  73 + /** 投苗日期 */
  74 + @JsonFormat(pattern = "yyyy-MM-dd")
  75 + @ApiModelProperty(value="投苗日期")
  76 + @Excel(name = "投苗日期", width = 30, dateFormat = "yyyy-MM-dd")
  77 + private Date seedlingDate;
  78 +
  79 + /** 投苗数量(尾) */
  80 + @ApiModelProperty(value="投苗数量(尾)")
  81 + @Excel(name = "投苗数量(尾)")
  82 + private Long seedlingQuantity;
  83 +
  84 + /** 苗成本(元) */
  85 + @ApiModelProperty(value="苗成本(元)")
  86 + @Excel(name = "苗成本(元)")
  87 + private BigDecimal seedlingCost;
  88 +
  89 + /** 饲料数量(kg) */
  90 + @ApiModelProperty(value="饲料数量(kg)")
  91 + @Excel(name = "饲料数量(kg)")
  92 + private BigDecimal feedQuantity;
  93 +
  94 + /** 饲料金额(元) */
  95 + @ApiModelProperty(value="饲料金额(元)")
  96 + @Excel(name = "饲料金额(元)")
  97 + private BigDecimal feedAmount;
  98 +
  99 + /** 动保 */
  100 + @ApiModelProperty(value="动保")
  101 + @Excel(name = "动保")
  102 + private BigDecimal animalHealthProtection;
  103 +
  104 + /** 低值易耗品 */
  105 + @ApiModelProperty(value="低值易耗品")
  106 + @Excel(name = "低值易耗品")
  107 + private BigDecimal consumablesCost;
  108 +
  109 + /** 人工 */
  110 + @ApiModelProperty(value="人工")
  111 + @Excel(name = "人工")
  112 + private BigDecimal laborCost;
  113 +
  114 + /** 电费 */
  115 + @ApiModelProperty(value="电费")
  116 + @Excel(name = "电费")
  117 + private BigDecimal electricityFee;
  118 +
  119 + /** 拉网费 */
  120 + @ApiModelProperty(value="拉网费")
  121 + @Excel(name = "拉网费")
  122 + private BigDecimal nettingFee;
  123 +
  124 + /** 折旧与摊销 */
  125 + @ApiModelProperty(value="折旧与摊销")
  126 + @Excel(name = "折旧与摊销")
  127 + private BigDecimal depreciationAndAmortization;
  128 +
  129 + /** 修理费 */
  130 + @ApiModelProperty(value="修理费")
  131 + @Excel(name = "修理费")
  132 + private BigDecimal repairFee;
  133 +
  134 + /** 燃料费 */
  135 + @ApiModelProperty(value="燃料费")
  136 + @Excel(name = "燃料费")
  137 + private BigDecimal fuelFee;
  138 +
  139 + /** 租赁费 */
  140 + @ApiModelProperty(value="租赁费")
  141 + @Excel(name = "租赁费")
  142 + private BigDecimal leaseFee;
  143 +
  144 + /** 其他公摊费 */
  145 + @ApiModelProperty(value="其他公摊费")
  146 + @Excel(name = "其他公摊费")
  147 + private BigDecimal otherSharedCosts;
  148 +
  149 + /** 定额费用 */
  150 + @ApiModelProperty(value="定额费用")
  151 + @Excel(name = "定额费用")
  152 + private BigDecimal fixedCosts;
  153 +
  154 + /** 网箱折旧费 */
  155 + @ApiModelProperty(value="网箱折旧费")
  156 + @Excel(name = "网箱折旧费")
  157 + private BigDecimal cageDepreciationFee;
  158 +
  159 + /** 网箱管理费 */
  160 + @ApiModelProperty(value="网箱管理费")
  161 + @Excel(name = "网箱管理费")
  162 + private BigDecimal cageManagementFee;
  163 +
  164 + /** 海域费 */
  165 + @ApiModelProperty(value="海域费")
  166 + @Excel(name = "海域费")
  167 + private BigDecimal seaAreaFee;
  168 +
  169 + /** 塘租 */
  170 + @ApiModelProperty(value="塘租")
  171 + @Excel(name = "塘租")
  172 + private BigDecimal pondRent;
  173 +
  174 + /** 成本合计 */
  175 + @ApiModelProperty(value="成本合计")
  176 + @Excel(name = "成本合计")
  177 + private BigDecimal totalCost;
  178 +
  179 + /** 养殖天数 */
  180 + @ApiModelProperty(value="养殖天数")
  181 + @Excel(name = "养殖天数")
  182 + private Integer stockInfoDays;
  183 +
  184 + /** 存塘规格 */
  185 + @ApiModelProperty(value="存塘规格")
  186 + @Excel(name = "存塘规格")
  187 + private String stockSpecification;
  188 +
  189 + /** 存塘数量(尾) */
  190 + @ApiModelProperty(value="存塘数量(尾)")
  191 + @Excel(name = "存塘数量(尾)")
  192 + private Long stockQuantity;
  193 +
  194 + /** 存塘重量(斤) */
  195 + @ApiModelProperty(value="存塘重量(斤)")
  196 + @Excel(name = "存塘重量(斤)")
  197 + private BigDecimal stockWeight;
  198 +
  199 + /** 单位成本 */
  200 + @ApiModelProperty(value="单位成本")
  201 + @Excel(name = "单位成本")
  202 + private BigDecimal unitCost;
  203 +
  204 + public void setId(Integer id)
  205 + {
  206 + this.id = id;
  207 + }
  208 +
  209 + public Integer getId()
  210 + {
  211 + return id;
  212 + }
  213 + public void setFarmName(String farmName)
  214 + {
  215 + this.farmName = farmName;
  216 + }
  217 +
  218 + public String getFarmName()
  219 + {
  220 + return farmName;
  221 + }
  222 + public void setBreedingArea(String breedingArea)
  223 + {
  224 + this.breedingArea = breedingArea;
  225 + }
  226 +
  227 + public String getBreedingArea()
  228 + {
  229 + return breedingArea;
  230 + }
  231 + public void setBreedingRound(String breedingRound)
  232 + {
  233 + this.breedingRound = breedingRound;
  234 + }
  235 +
  236 + public String getBreedingRound()
  237 + {
  238 + return breedingRound;
  239 + }
  240 + public void setBreedingCategory(String breedingCategory)
  241 + {
  242 + this.breedingCategory = breedingCategory;
  243 + }
  244 +
  245 + public String getBreedingCategory()
  246 + {
  247 + return breedingCategory;
  248 + }
  249 + public void setBreedingSpecies(String breedingSpecies)
  250 + {
  251 + this.breedingSpecies = breedingSpecies;
  252 + }
  253 +
  254 + public String getBreedingSpecies()
  255 + {
  256 + return breedingSpecies;
  257 + }
  258 + public void setPondOrBox(String pondOrBox)
  259 + {
  260 + this.pondOrBox = pondOrBox;
  261 + }
  262 +
  263 + public String getPondOrBox()
  264 + {
  265 + return pondOrBox;
  266 + }
  267 + public void setBreedingStage(String breedingStage)
  268 + {
  269 + this.breedingStage = breedingStage;
  270 + }
  271 +
  272 + public String getBreedingStage()
  273 + {
  274 + return breedingStage;
  275 + }
  276 + public void setCostDate(Date costDate)
  277 + {
  278 + this.costDate = costDate;
  279 + }
  280 +
  281 + public Date getCostDate()
  282 + {
  283 + return costDate;
  284 + }
  285 + public void setVariableCosts(BigDecimal variableCosts)
  286 + {
  287 + this.variableCosts = variableCosts;
  288 + }
  289 +
  290 + public BigDecimal getVariableCosts()
  291 + {
  292 + return variableCosts;
  293 + }
  294 + public void setSeedlingDate(Date seedlingDate)
  295 + {
  296 + this.seedlingDate = seedlingDate;
  297 + }
  298 +
  299 + public Date getSeedlingDate()
  300 + {
  301 + return seedlingDate;
  302 + }
  303 + public void setSeedlingQuantity(Long seedlingQuantity)
  304 + {
  305 + this.seedlingQuantity = seedlingQuantity;
  306 + }
  307 +
  308 + public Long getSeedlingQuantity()
  309 + {
  310 + return seedlingQuantity;
  311 + }
  312 + public void setSeedlingCost(BigDecimal seedlingCost)
  313 + {
  314 + this.seedlingCost = seedlingCost;
  315 + }
  316 +
  317 + public BigDecimal getSeedlingCost()
  318 + {
  319 + return seedlingCost;
  320 + }
  321 + public void setFeedQuantity(BigDecimal feedQuantity)
  322 + {
  323 + this.feedQuantity = feedQuantity;
  324 + }
  325 +
  326 + public BigDecimal getFeedQuantity()
  327 + {
  328 + return feedQuantity;
  329 + }
  330 + public void setFeedAmount(BigDecimal feedAmount)
  331 + {
  332 + this.feedAmount = feedAmount;
  333 + }
  334 +
  335 + public BigDecimal getFeedAmount()
  336 + {
  337 + return feedAmount;
  338 + }
  339 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  340 + {
  341 + this.animalHealthProtection = animalHealthProtection;
  342 + }
  343 +
  344 + public BigDecimal getAnimalHealthProtection()
  345 + {
  346 + return animalHealthProtection;
  347 + }
  348 + public void setConsumablesCost(BigDecimal consumablesCost)
  349 + {
  350 + this.consumablesCost = consumablesCost;
  351 + }
  352 +
  353 + public BigDecimal getConsumablesCost()
  354 + {
  355 + return consumablesCost;
  356 + }
  357 + public void setLaborCost(BigDecimal laborCost)
  358 + {
  359 + this.laborCost = laborCost;
  360 + }
  361 +
  362 + public BigDecimal getLaborCost()
  363 + {
  364 + return laborCost;
  365 + }
  366 + public void setElectricityFee(BigDecimal electricityFee)
  367 + {
  368 + this.electricityFee = electricityFee;
  369 + }
  370 +
  371 + public BigDecimal getElectricityFee()
  372 + {
  373 + return electricityFee;
  374 + }
  375 + public void setNettingFee(BigDecimal nettingFee)
  376 + {
  377 + this.nettingFee = nettingFee;
  378 + }
  379 +
  380 + public BigDecimal getNettingFee()
  381 + {
  382 + return nettingFee;
  383 + }
  384 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  385 + {
  386 + this.depreciationAndAmortization = depreciationAndAmortization;
  387 + }
  388 +
  389 + public BigDecimal getDepreciationAndAmortization()
  390 + {
  391 + return depreciationAndAmortization;
  392 + }
  393 + public void setRepairFee(BigDecimal repairFee)
  394 + {
  395 + this.repairFee = repairFee;
  396 + }
  397 +
  398 + public BigDecimal getRepairFee()
  399 + {
  400 + return repairFee;
  401 + }
  402 + public void setFuelFee(BigDecimal fuelFee)
  403 + {
  404 + this.fuelFee = fuelFee;
  405 + }
  406 +
  407 + public BigDecimal getFuelFee()
  408 + {
  409 + return fuelFee;
  410 + }
  411 + public void setLeaseFee(BigDecimal leaseFee)
  412 + {
  413 + this.leaseFee = leaseFee;
  414 + }
  415 +
  416 + public BigDecimal getLeaseFee()
  417 + {
  418 + return leaseFee;
  419 + }
  420 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  421 + {
  422 + this.otherSharedCosts = otherSharedCosts;
  423 + }
  424 +
  425 + public BigDecimal getOtherSharedCosts()
  426 + {
  427 + return otherSharedCosts;
  428 + }
  429 + public void setFixedCosts(BigDecimal fixedCosts)
  430 + {
  431 + this.fixedCosts = fixedCosts;
  432 + }
  433 +
  434 + public BigDecimal getFixedCosts()
  435 + {
  436 + return fixedCosts;
  437 + }
  438 + public void setCageDepreciationFee(BigDecimal cageDepreciationFee)
  439 + {
  440 + this.cageDepreciationFee = cageDepreciationFee;
  441 + }
  442 +
  443 + public BigDecimal getCageDepreciationFee()
  444 + {
  445 + return cageDepreciationFee;
  446 + }
  447 + public void setCageManagementFee(BigDecimal cageManagementFee)
  448 + {
  449 + this.cageManagementFee = cageManagementFee;
  450 + }
  451 +
  452 + public BigDecimal getCageManagementFee()
  453 + {
  454 + return cageManagementFee;
  455 + }
  456 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  457 + {
  458 + this.seaAreaFee = seaAreaFee;
  459 + }
  460 +
  461 + public BigDecimal getSeaAreaFee()
  462 + {
  463 + return seaAreaFee;
  464 + }
  465 + public void setPondRent(BigDecimal pondRent)
  466 + {
  467 + this.pondRent = pondRent;
  468 + }
  469 +
  470 + public BigDecimal getPondRent()
  471 + {
  472 + return pondRent;
  473 + }
  474 + public void setTotalCost(BigDecimal totalCost)
  475 + {
  476 + this.totalCost = totalCost;
  477 + }
  478 +
  479 + public BigDecimal getTotalCost()
  480 + {
  481 + return totalCost;
  482 + }
  483 + public void setStockInfoDays(Integer stockInfoDays)
  484 + {
  485 + this.stockInfoDays = stockInfoDays;
  486 + }
  487 +
  488 + public Integer getStockInfoDays()
  489 + {
  490 + return stockInfoDays;
  491 + }
  492 + public void setStockSpecification(String stockSpecification)
  493 + {
  494 + this.stockSpecification = stockSpecification;
  495 + }
  496 +
  497 + public String getStockSpecification()
  498 + {
  499 + return stockSpecification;
  500 + }
  501 + public void setStockQuantity(Long stockQuantity)
  502 + {
  503 + this.stockQuantity = stockQuantity;
  504 + }
  505 +
  506 + public Long getStockQuantity()
  507 + {
  508 + return stockQuantity;
  509 + }
  510 + public void setStockWeight(BigDecimal stockWeight)
  511 + {
  512 + this.stockWeight = stockWeight;
  513 + }
  514 +
  515 + public BigDecimal getStockWeight()
  516 + {
  517 + return stockWeight;
  518 + }
  519 + public void setUnitCost(BigDecimal unitCost)
  520 + {
  521 + this.unitCost = unitCost;
  522 + }
  523 +
  524 + public BigDecimal getUnitCost()
  525 + {
  526 + return unitCost;
  527 + }
  528 +
  529 + @Override
  530 + public String toString() {
  531 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  532 + .append("id", getId())
  533 + .append("farmName", getFarmName())
  534 + .append("breedingArea", getBreedingArea())
  535 + .append("breedingRound", getBreedingRound())
  536 + .append("breedingCategory", getBreedingCategory())
  537 + .append("breedingSpecies", getBreedingSpecies())
  538 + .append("pondOrBox", getPondOrBox())
  539 + .append("breedingStage", getBreedingStage())
  540 + .append("costDate", getCostDate())
  541 + .append("variableCosts", getVariableCosts())
  542 + .append("seedlingDate", getSeedlingDate())
  543 + .append("seedlingQuantity", getSeedlingQuantity())
  544 + .append("seedlingCost", getSeedlingCost())
  545 + .append("feedQuantity", getFeedQuantity())
  546 + .append("feedAmount", getFeedAmount())
  547 + .append("animalHealthProtection", getAnimalHealthProtection())
  548 + .append("consumablesCost", getConsumablesCost())
  549 + .append("laborCost", getLaborCost())
  550 + .append("electricityFee", getElectricityFee())
  551 + .append("nettingFee", getNettingFee())
  552 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  553 + .append("repairFee", getRepairFee())
  554 + .append("fuelFee", getFuelFee())
  555 + .append("leaseFee", getLeaseFee())
  556 + .append("otherSharedCosts", getOtherSharedCosts())
  557 + .append("fixedCosts", getFixedCosts())
  558 + .append("cageDepreciationFee", getCageDepreciationFee())
  559 + .append("cageManagementFee", getCageManagementFee())
  560 + .append("seaAreaFee", getSeaAreaFee())
  561 + .append("pondRent", getPondRent())
  562 + .append("totalCost", getTotalCost())
  563 + .append("stockInfoDays", getStockInfoDays())
  564 + .append("stockSpecification", getStockSpecification())
  565 + .append("stockQuantity", getStockQuantity())
  566 + .append("stockWeight", getStockWeight())
  567 + .append("unitCost", getUnitCost())
  568 + .toString();
  569 + }
  570 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 斤鱼成本与售价查询对象 cb_fish_cost_and_price_query
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("斤鱼成本与售价查询")
  20 +public class CbFishCostAndPriceQuery extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 生产造次 */
  33 + @ApiModelProperty(value="生产造次")
  34 + @Excel(name = "生产造次")
  35 + private String productionCycle;
  36 +
  37 + /** 养殖品种 */
  38 + @ApiModelProperty(value="养殖品种")
  39 + @Excel(name = "养殖品种")
  40 + private String fishSpecies;
  41 +
  42 + /** 规格等级 */
  43 + @ApiModelProperty(value="规格等级")
  44 + @Excel(name = "规格等级")
  45 + private String specificationGrade;
  46 +
  47 + /** 出鱼日期 */
  48 + @JsonFormat(pattern = "yyyy-MM-dd")
  49 + @ApiModelProperty(value="出鱼日期")
  50 + @Excel(name = "出鱼日期", width = 30, dateFormat = "yyyy-MM-dd")
  51 + private Date fishOutDate;
  52 +
  53 + /** 斤鱼成本 */
  54 + @ApiModelProperty(value="斤鱼成本")
  55 + @Excel(name = "斤鱼成本")
  56 + private BigDecimal costPerJin;
  57 +
  58 + /** 斤鱼售价 */
  59 + @ApiModelProperty(value="斤鱼售价")
  60 + @Excel(name = "斤鱼售价")
  61 + private BigDecimal pricePerJin;
  62 +
  63 + public void setId(Integer id)
  64 + {
  65 + this.id = id;
  66 + }
  67 +
  68 + public Integer getId()
  69 + {
  70 + return id;
  71 + }
  72 + public void setFarmName(String farmName)
  73 + {
  74 + this.farmName = farmName;
  75 + }
  76 +
  77 + public String getFarmName()
  78 + {
  79 + return farmName;
  80 + }
  81 + public void setProductionCycle(String productionCycle)
  82 + {
  83 + this.productionCycle = productionCycle;
  84 + }
  85 +
  86 + public String getProductionCycle()
  87 + {
  88 + return productionCycle;
  89 + }
  90 + public void setFishSpecies(String fishSpecies)
  91 + {
  92 + this.fishSpecies = fishSpecies;
  93 + }
  94 +
  95 + public String getFishSpecies()
  96 + {
  97 + return fishSpecies;
  98 + }
  99 + public void setSpecificationGrade(String specificationGrade)
  100 + {
  101 + this.specificationGrade = specificationGrade;
  102 + }
  103 +
  104 + public String getSpecificationGrade()
  105 + {
  106 + return specificationGrade;
  107 + }
  108 + public void setFishOutDate(Date fishOutDate)
  109 + {
  110 + this.fishOutDate = fishOutDate;
  111 + }
  112 +
  113 + public Date getFishOutDate()
  114 + {
  115 + return fishOutDate;
  116 + }
  117 + public void setCostPerJin(BigDecimal costPerJin)
  118 + {
  119 + this.costPerJin = costPerJin;
  120 + }
  121 +
  122 + public BigDecimal getCostPerJin()
  123 + {
  124 + return costPerJin;
  125 + }
  126 + public void setPricePerJin(BigDecimal pricePerJin)
  127 + {
  128 + this.pricePerJin = pricePerJin;
  129 + }
  130 +
  131 + public BigDecimal getPricePerJin()
  132 + {
  133 + return pricePerJin;
  134 + }
  135 +
  136 + @Override
  137 + public String toString() {
  138 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  139 + .append("id", getId())
  140 + .append("farmName", getFarmName())
  141 + .append("productionCycle", getProductionCycle())
  142 + .append("fishSpecies", getFishSpecies())
  143 + .append("specificationGrade", getSpecificationGrade())
  144 + .append("fishOutDate", getFishOutDate())
  145 + .append("costPerJin", getCostPerJin())
  146 + .append("pricePerJin", getPricePerJin())
  147 + .toString();
  148 + }
  149 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 养成结转成本统计对象 cb_growth_closing_cost_statistics
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("养成结转成本统计")
  20 +public class CbGrowthClosingCostStatistics extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖区域 */
  33 + @ApiModelProperty(value="养殖区域")
  34 + @Excel(name = "养殖区域")
  35 + private String breedingArea;
  36 +
  37 + /** 养殖造次 */
  38 + @ApiModelProperty(value="养殖造次")
  39 + @Excel(name = "养殖造次")
  40 + private String breedingCycle;
  41 +
  42 + /** 养殖品类 */
  43 + @ApiModelProperty(value="养殖品类")
  44 + @Excel(name = "养殖品类")
  45 + private String breedingCategory;
  46 +
  47 + /** 养殖品种 */
  48 + @ApiModelProperty(value="养殖品种")
  49 + @Excel(name = "养殖品种")
  50 + private String breedingSpecies;
  51 +
  52 + /** 塘口/箱号 */
  53 + @ApiModelProperty(value="塘口/箱号")
  54 + @Excel(name = "塘口/箱号")
  55 + private String pondOrBox;
  56 +
  57 + /** 操作日期 */
  58 + @JsonFormat(pattern = "yyyy-MM-dd")
  59 + @ApiModelProperty(value="操作日期")
  60 + @Excel(name = "操作日期", width = 30, dateFormat = "yyyy-MM-dd")
  61 + private Date operationDate;
  62 +
  63 + /** 操作类型 */
  64 + @ApiModelProperty(value="操作类型")
  65 + @Excel(name = "操作类型")
  66 + private String operationType;
  67 +
  68 + /** 养殖阶段 */
  69 + @ApiModelProperty(value="养殖阶段")
  70 + @Excel(name = "养殖阶段")
  71 + private String breedingStage;
  72 +
  73 + /** 变动成本 */
  74 + @ApiModelProperty(value="变动成本")
  75 + @Excel(name = "变动成本")
  76 + private BigDecimal variableCosts;
  77 +
  78 + /** 投苗日期 */
  79 + @JsonFormat(pattern = "yyyy-MM-dd")
  80 + @ApiModelProperty(value="投苗日期")
  81 + @Excel(name = "投苗日期", width = 30, dateFormat = "yyyy-MM-dd")
  82 + private Date seedingDate;
  83 +
  84 + /** 投苗数量 (尾) */
  85 + @ApiModelProperty(value="投苗数量 (尾)")
  86 + @Excel(name = "投苗数量 (尾)")
  87 + private Long seedingQuantityTail;
  88 +
  89 + /** 投苗金额(元) */
  90 + @ApiModelProperty(value="投苗金额(元)")
  91 + @Excel(name = "投苗金额(元)")
  92 + private BigDecimal seedingAmount;
  93 +
  94 + /** 饲料数量(kg) */
  95 + @ApiModelProperty(value="饲料数量(kg)")
  96 + @Excel(name = "饲料数量(kg)")
  97 + private BigDecimal feedQuantityKg;
  98 +
  99 + /** 饲料金额(元) */
  100 + @ApiModelProperty(value="饲料金额(元)")
  101 + @Excel(name = "饲料金额(元)")
  102 + private BigDecimal feedAmount;
  103 +
  104 + /** 动保 */
  105 + @ApiModelProperty(value="动保")
  106 + @Excel(name = "动保")
  107 + private BigDecimal animalHealthProtection;
  108 +
  109 + /** 低值易耗品 */
  110 + @ApiModelProperty(value="低值易耗品")
  111 + @Excel(name = "低值易耗品")
  112 + private BigDecimal consumablesCost;
  113 +
  114 + /** 电费 */
  115 + @ApiModelProperty(value="电费")
  116 + @Excel(name = "电费")
  117 + private BigDecimal electricityFee;
  118 +
  119 + /** 人工成本 */
  120 + @ApiModelProperty(value="人工成本")
  121 + @Excel(name = "人工成本")
  122 + private BigDecimal laborCost;
  123 +
  124 + /** 网费 */
  125 + @ApiModelProperty(value="网费")
  126 + @Excel(name = "网费")
  127 + private BigDecimal netFee;
  128 +
  129 + /** 折旧与摊销 */
  130 + @ApiModelProperty(value="折旧与摊销")
  131 + @Excel(name = "折旧与摊销")
  132 + private BigDecimal depreciationAndAmortization;
  133 +
  134 + /** 其他公摊 */
  135 + @ApiModelProperty(value="其他公摊")
  136 + @Excel(name = "其他公摊")
  137 + private BigDecimal otherSharedCosts;
  138 +
  139 + /** 修理费 */
  140 + @ApiModelProperty(value="修理费")
  141 + @Excel(name = "修理费")
  142 + private BigDecimal repairFee;
  143 +
  144 + /** 燃料费 */
  145 + @ApiModelProperty(value="燃料费")
  146 + @Excel(name = "燃料费")
  147 + private BigDecimal fuelFee;
  148 +
  149 + /** 租赁费 */
  150 + @ApiModelProperty(value="租赁费")
  151 + @Excel(name = "租赁费")
  152 + private BigDecimal leaseFee;
  153 +
  154 + /** 定额费用 */
  155 + @ApiModelProperty(value="定额费用")
  156 + @Excel(name = "定额费用")
  157 + private BigDecimal fixedCosts;
  158 +
  159 + /** 网箱折旧 */
  160 + @ApiModelProperty(value="网箱折旧")
  161 + @Excel(name = "网箱折旧")
  162 + private BigDecimal cageDepreciation;
  163 +
  164 + /** 网箱管理费 */
  165 + @ApiModelProperty(value="网箱管理费")
  166 + @Excel(name = "网箱管理费")
  167 + private BigDecimal cageManagementFee;
  168 +
  169 + /** 海域费 */
  170 + @ApiModelProperty(value="海域费")
  171 + @Excel(name = "海域费")
  172 + private BigDecimal seaAreaFee;
  173 +
  174 + /** 塘租 */
  175 + @ApiModelProperty(value="塘租")
  176 + @Excel(name = "塘租")
  177 + private BigDecimal pondRent;
  178 +
  179 + /** 成本合计 */
  180 + @ApiModelProperty(value="成本合计")
  181 + @Excel(name = "成本合计")
  182 + private BigDecimal totalCost;
  183 +
  184 + public void setId(Integer id)
  185 + {
  186 + this.id = id;
  187 + }
  188 +
  189 + public Integer getId()
  190 + {
  191 + return id;
  192 + }
  193 + public void setFarmName(String farmName)
  194 + {
  195 + this.farmName = farmName;
  196 + }
  197 +
  198 + public String getFarmName()
  199 + {
  200 + return farmName;
  201 + }
  202 + public void setBreedingArea(String breedingArea)
  203 + {
  204 + this.breedingArea = breedingArea;
  205 + }
  206 +
  207 + public String getBreedingArea()
  208 + {
  209 + return breedingArea;
  210 + }
  211 + public void setBreedingCycle(String breedingCycle)
  212 + {
  213 + this.breedingCycle = breedingCycle;
  214 + }
  215 +
  216 + public String getBreedingCycle()
  217 + {
  218 + return breedingCycle;
  219 + }
  220 + public void setBreedingCategory(String breedingCategory)
  221 + {
  222 + this.breedingCategory = breedingCategory;
  223 + }
  224 +
  225 + public String getBreedingCategory()
  226 + {
  227 + return breedingCategory;
  228 + }
  229 + public void setBreedingSpecies(String breedingSpecies)
  230 + {
  231 + this.breedingSpecies = breedingSpecies;
  232 + }
  233 +
  234 + public String getBreedingSpecies()
  235 + {
  236 + return breedingSpecies;
  237 + }
  238 + public void setPondOrBox(String pondOrBox)
  239 + {
  240 + this.pondOrBox = pondOrBox;
  241 + }
  242 +
  243 + public String getPondOrBox()
  244 + {
  245 + return pondOrBox;
  246 + }
  247 + public void setOperationDate(Date operationDate)
  248 + {
  249 + this.operationDate = operationDate;
  250 + }
  251 +
  252 + public Date getOperationDate()
  253 + {
  254 + return operationDate;
  255 + }
  256 + public void setOperationType(String operationType)
  257 + {
  258 + this.operationType = operationType;
  259 + }
  260 +
  261 + public String getOperationType()
  262 + {
  263 + return operationType;
  264 + }
  265 + public void setBreedingStage(String breedingStage)
  266 + {
  267 + this.breedingStage = breedingStage;
  268 + }
  269 +
  270 + public String getBreedingStage()
  271 + {
  272 + return breedingStage;
  273 + }
  274 + public void setVariableCosts(BigDecimal variableCosts)
  275 + {
  276 + this.variableCosts = variableCosts;
  277 + }
  278 +
  279 + public BigDecimal getVariableCosts()
  280 + {
  281 + return variableCosts;
  282 + }
  283 + public void setSeedingDate(Date seedingDate)
  284 + {
  285 + this.seedingDate = seedingDate;
  286 + }
  287 +
  288 + public Date getSeedingDate()
  289 + {
  290 + return seedingDate;
  291 + }
  292 + public void setSeedingQuantityTail(Long seedingQuantityTail)
  293 + {
  294 + this.seedingQuantityTail = seedingQuantityTail;
  295 + }
  296 +
  297 + public Long getSeedingQuantityTail()
  298 + {
  299 + return seedingQuantityTail;
  300 + }
  301 + public void setSeedingAmount(BigDecimal seedingAmount)
  302 + {
  303 + this.seedingAmount = seedingAmount;
  304 + }
  305 +
  306 + public BigDecimal getSeedingAmount()
  307 + {
  308 + return seedingAmount;
  309 + }
  310 + public void setFeedQuantityKg(BigDecimal feedQuantityKg)
  311 + {
  312 + this.feedQuantityKg = feedQuantityKg;
  313 + }
  314 +
  315 + public BigDecimal getFeedQuantityKg()
  316 + {
  317 + return feedQuantityKg;
  318 + }
  319 + public void setFeedAmount(BigDecimal feedAmount)
  320 + {
  321 + this.feedAmount = feedAmount;
  322 + }
  323 +
  324 + public BigDecimal getFeedAmount()
  325 + {
  326 + return feedAmount;
  327 + }
  328 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  329 + {
  330 + this.animalHealthProtection = animalHealthProtection;
  331 + }
  332 +
  333 + public BigDecimal getAnimalHealthProtection()
  334 + {
  335 + return animalHealthProtection;
  336 + }
  337 + public void setConsumablesCost(BigDecimal consumablesCost)
  338 + {
  339 + this.consumablesCost = consumablesCost;
  340 + }
  341 +
  342 + public BigDecimal getConsumablesCost()
  343 + {
  344 + return consumablesCost;
  345 + }
  346 + public void setElectricityFee(BigDecimal electricityFee)
  347 + {
  348 + this.electricityFee = electricityFee;
  349 + }
  350 +
  351 + public BigDecimal getElectricityFee()
  352 + {
  353 + return electricityFee;
  354 + }
  355 + public void setLaborCost(BigDecimal laborCost)
  356 + {
  357 + this.laborCost = laborCost;
  358 + }
  359 +
  360 + public BigDecimal getLaborCost()
  361 + {
  362 + return laborCost;
  363 + }
  364 + public void setNetFee(BigDecimal netFee)
  365 + {
  366 + this.netFee = netFee;
  367 + }
  368 +
  369 + public BigDecimal getNetFee()
  370 + {
  371 + return netFee;
  372 + }
  373 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  374 + {
  375 + this.depreciationAndAmortization = depreciationAndAmortization;
  376 + }
  377 +
  378 + public BigDecimal getDepreciationAndAmortization()
  379 + {
  380 + return depreciationAndAmortization;
  381 + }
  382 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  383 + {
  384 + this.otherSharedCosts = otherSharedCosts;
  385 + }
  386 +
  387 + public BigDecimal getOtherSharedCosts()
  388 + {
  389 + return otherSharedCosts;
  390 + }
  391 + public void setRepairFee(BigDecimal repairFee)
  392 + {
  393 + this.repairFee = repairFee;
  394 + }
  395 +
  396 + public BigDecimal getRepairFee()
  397 + {
  398 + return repairFee;
  399 + }
  400 + public void setFuelFee(BigDecimal fuelFee)
  401 + {
  402 + this.fuelFee = fuelFee;
  403 + }
  404 +
  405 + public BigDecimal getFuelFee()
  406 + {
  407 + return fuelFee;
  408 + }
  409 + public void setLeaseFee(BigDecimal leaseFee)
  410 + {
  411 + this.leaseFee = leaseFee;
  412 + }
  413 +
  414 + public BigDecimal getLeaseFee()
  415 + {
  416 + return leaseFee;
  417 + }
  418 + public void setFixedCosts(BigDecimal fixedCosts)
  419 + {
  420 + this.fixedCosts = fixedCosts;
  421 + }
  422 +
  423 + public BigDecimal getFixedCosts()
  424 + {
  425 + return fixedCosts;
  426 + }
  427 + public void setCageDepreciation(BigDecimal cageDepreciation)
  428 + {
  429 + this.cageDepreciation = cageDepreciation;
  430 + }
  431 +
  432 + public BigDecimal getCageDepreciation()
  433 + {
  434 + return cageDepreciation;
  435 + }
  436 + public void setCageManagementFee(BigDecimal cageManagementFee)
  437 + {
  438 + this.cageManagementFee = cageManagementFee;
  439 + }
  440 +
  441 + public BigDecimal getCageManagementFee()
  442 + {
  443 + return cageManagementFee;
  444 + }
  445 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  446 + {
  447 + this.seaAreaFee = seaAreaFee;
  448 + }
  449 +
  450 + public BigDecimal getSeaAreaFee()
  451 + {
  452 + return seaAreaFee;
  453 + }
  454 + public void setPondRent(BigDecimal pondRent)
  455 + {
  456 + this.pondRent = pondRent;
  457 + }
  458 +
  459 + public BigDecimal getPondRent()
  460 + {
  461 + return pondRent;
  462 + }
  463 + public void setTotalCost(BigDecimal totalCost)
  464 + {
  465 + this.totalCost = totalCost;
  466 + }
  467 +
  468 + public BigDecimal getTotalCost()
  469 + {
  470 + return totalCost;
  471 + }
  472 +
  473 + @Override
  474 + public String toString() {
  475 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  476 + .append("id", getId())
  477 + .append("farmName", getFarmName())
  478 + .append("breedingArea", getBreedingArea())
  479 + .append("breedingCycle", getBreedingCycle())
  480 + .append("breedingCategory", getBreedingCategory())
  481 + .append("breedingSpecies", getBreedingSpecies())
  482 + .append("pondOrBox", getPondOrBox())
  483 + .append("operationDate", getOperationDate())
  484 + .append("operationType", getOperationType())
  485 + .append("breedingStage", getBreedingStage())
  486 + .append("variableCosts", getVariableCosts())
  487 + .append("seedingDate", getSeedingDate())
  488 + .append("seedingQuantityTail", getSeedingQuantityTail())
  489 + .append("seedingAmount", getSeedingAmount())
  490 + .append("feedQuantityKg", getFeedQuantityKg())
  491 + .append("feedAmount", getFeedAmount())
  492 + .append("animalHealthProtection", getAnimalHealthProtection())
  493 + .append("consumablesCost", getConsumablesCost())
  494 + .append("electricityFee", getElectricityFee())
  495 + .append("laborCost", getLaborCost())
  496 + .append("netFee", getNetFee())
  497 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  498 + .append("otherSharedCosts", getOtherSharedCosts())
  499 + .append("repairFee", getRepairFee())
  500 + .append("fuelFee", getFuelFee())
  501 + .append("leaseFee", getLeaseFee())
  502 + .append("fixedCosts", getFixedCosts())
  503 + .append("cageDepreciation", getCageDepreciation())
  504 + .append("cageManagementFee", getCageManagementFee())
  505 + .append("seaAreaFee", getSeaAreaFee())
  506 + .append("pondRent", getPondRent())
  507 + .append("totalCost", getTotalCost())
  508 + .toString();
  509 + }
  510 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import org.apache.commons.lang3.builder.ToStringBuilder;
  5 +import org.apache.commons.lang3.builder.ToStringStyle;
  6 +import com.zhonglai.luhui.common.util.annotation.Excel;
  7 +import io.swagger.annotations.ApiModel;
  8 +import io.swagger.annotations.ApiModelProperty;
  9 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  10 +
  11 +/**
  12 + * 养成成本月度汇总余额对象 cb_monthly_raising_cost_summary
  13 + *
  14 + * @author zhonglai
  15 + * @date 2024-04-24
  16 + */
  17 +@ApiModel("养成成本月度汇总余额")
  18 +public class CbMonthlyRaisingCostSummary extends BaseEntity
  19 +{
  20 + private static final long serialVersionUID = 1L;
  21 +
  22 + /** 主键ID */
  23 + private Integer id;
  24 +
  25 + /** 养殖场 */
  26 + @ApiModelProperty(value="养殖场")
  27 + @Excel(name = "养殖场")
  28 + private String farmName;
  29 +
  30 + /** 养殖造次 */
  31 + @ApiModelProperty(value="养殖造次")
  32 + @Excel(name = "养殖造次")
  33 + private String raisingCycle;
  34 +
  35 + /** 养殖区域 */
  36 + @ApiModelProperty(value="养殖区域")
  37 + @Excel(name = "养殖区域")
  38 + private String raisingArea;
  39 +
  40 + /** 养殖品种 */
  41 + @ApiModelProperty(value="养殖品种")
  42 + @Excel(name = "养殖品种")
  43 + private String raisingSpecies;
  44 +
  45 + /** 塘口/箱号 */
  46 + @ApiModelProperty(value="塘口/箱号")
  47 + @Excel(name = "塘口/箱号")
  48 + private String pondOrCage;
  49 +
  50 + /** 摘要 */
  51 + @ApiModelProperty(value="摘要")
  52 + @Excel(name = "摘要")
  53 + private String summary;
  54 +
  55 + /** 变动成本 */
  56 + @ApiModelProperty(value="变动成本")
  57 + @Excel(name = "变动成本")
  58 + private BigDecimal variableCosts;
  59 +
  60 + /** 苗数量 */
  61 + @ApiModelProperty(value="苗数量")
  62 + @Excel(name = "苗数量")
  63 + private Integer seedlingQuantity;
  64 +
  65 + /** 苗金额 */
  66 + @ApiModelProperty(value="苗金额")
  67 + @Excel(name = "苗金额")
  68 + private BigDecimal seedlingCost;
  69 +
  70 + /** 饲料数量(kg) */
  71 + @ApiModelProperty(value="饲料数量(kg)")
  72 + @Excel(name = "饲料数量(kg)")
  73 + private BigDecimal feedQuantityKg;
  74 +
  75 + /** 饲料成本 */
  76 + @ApiModelProperty(value="饲料成本")
  77 + @Excel(name = "饲料成本")
  78 + private BigDecimal feedCost;
  79 +
  80 + /** 动保 */
  81 + @ApiModelProperty(value="动保")
  82 + @Excel(name = "动保")
  83 + private BigDecimal animalHealthProtection;
  84 +
  85 + /** 低值易耗品 */
  86 + @ApiModelProperty(value="低值易耗品")
  87 + @Excel(name = "低值易耗品")
  88 + private BigDecimal consumablesCost;
  89 +
  90 + /** 电费 */
  91 + @ApiModelProperty(value="电费")
  92 + @Excel(name = "电费")
  93 + private BigDecimal electricityFee;
  94 +
  95 + /** 人工 */
  96 + @ApiModelProperty(value="人工")
  97 + @Excel(name = "人工")
  98 + private BigDecimal laborCost;
  99 +
  100 + /** 网费 */
  101 + @ApiModelProperty(value="网费")
  102 + @Excel(name = "网费")
  103 + private BigDecimal internetFee;
  104 +
  105 + /** 折旧与摊销 */
  106 + @ApiModelProperty(value="折旧与摊销")
  107 + @Excel(name = "折旧与摊销")
  108 + private BigDecimal depreciationAndAmortization;
  109 +
  110 + /** 修理费 */
  111 + @ApiModelProperty(value="修理费")
  112 + @Excel(name = "修理费")
  113 + private BigDecimal repairFee;
  114 +
  115 + /** 燃料费 */
  116 + @ApiModelProperty(value="燃料费")
  117 + @Excel(name = "燃料费")
  118 + private BigDecimal fuelFee;
  119 +
  120 + /** 租赁费 */
  121 + @ApiModelProperty(value="租赁费")
  122 + @Excel(name = "租赁费")
  123 + private BigDecimal leaseFee;
  124 +
  125 + /** 其他养殖公摊 */
  126 + @ApiModelProperty(value="其他养殖公摊")
  127 + @Excel(name = "其他养殖公摊")
  128 + private BigDecimal otherRaisingSharedCosts;
  129 +
  130 + /** 定额费用 */
  131 + @ApiModelProperty(value="定额费用")
  132 + @Excel(name = "定额费用")
  133 + private BigDecimal fixedCosts;
  134 +
  135 + /** 网箱折旧费 */
  136 + @ApiModelProperty(value="网箱折旧费")
  137 + @Excel(name = "网箱折旧费")
  138 + private BigDecimal cageDepreciationFee;
  139 +
  140 + /** 网箱管理费 */
  141 + @ApiModelProperty(value="网箱管理费")
  142 + @Excel(name = "网箱管理费")
  143 + private BigDecimal cageManagementFee;
  144 +
  145 + /** 海域费 */
  146 + @ApiModelProperty(value="海域费")
  147 + @Excel(name = "海域费")
  148 + private BigDecimal seaAreaFee;
  149 +
  150 + /** 塘租 */
  151 + @ApiModelProperty(value="塘租")
  152 + @Excel(name = "塘租")
  153 + private BigDecimal pondRent;
  154 +
  155 + /** 合计 */
  156 + @ApiModelProperty(value="合计")
  157 + @Excel(name = "合计")
  158 + private BigDecimal totalCost;
  159 +
  160 + public void setId(Integer id)
  161 + {
  162 + this.id = id;
  163 + }
  164 +
  165 + public Integer getId()
  166 + {
  167 + return id;
  168 + }
  169 + public void setFarmName(String farmName)
  170 + {
  171 + this.farmName = farmName;
  172 + }
  173 +
  174 + public String getFarmName()
  175 + {
  176 + return farmName;
  177 + }
  178 + public void setRaisingCycle(String raisingCycle)
  179 + {
  180 + this.raisingCycle = raisingCycle;
  181 + }
  182 +
  183 + public String getRaisingCycle()
  184 + {
  185 + return raisingCycle;
  186 + }
  187 + public void setRaisingArea(String raisingArea)
  188 + {
  189 + this.raisingArea = raisingArea;
  190 + }
  191 +
  192 + public String getRaisingArea()
  193 + {
  194 + return raisingArea;
  195 + }
  196 + public void setRaisingSpecies(String raisingSpecies)
  197 + {
  198 + this.raisingSpecies = raisingSpecies;
  199 + }
  200 +
  201 + public String getRaisingSpecies()
  202 + {
  203 + return raisingSpecies;
  204 + }
  205 + public void setPondOrCage(String pondOrCage)
  206 + {
  207 + this.pondOrCage = pondOrCage;
  208 + }
  209 +
  210 + public String getPondOrCage()
  211 + {
  212 + return pondOrCage;
  213 + }
  214 + public void setSummary(String summary)
  215 + {
  216 + this.summary = summary;
  217 + }
  218 +
  219 + public String getSummary()
  220 + {
  221 + return summary;
  222 + }
  223 + public void setVariableCosts(BigDecimal variableCosts)
  224 + {
  225 + this.variableCosts = variableCosts;
  226 + }
  227 +
  228 + public BigDecimal getVariableCosts()
  229 + {
  230 + return variableCosts;
  231 + }
  232 + public void setSeedlingQuantity(Integer seedlingQuantity)
  233 + {
  234 + this.seedlingQuantity = seedlingQuantity;
  235 + }
  236 +
  237 + public Integer getSeedlingQuantity()
  238 + {
  239 + return seedlingQuantity;
  240 + }
  241 + public void setSeedlingCost(BigDecimal seedlingCost)
  242 + {
  243 + this.seedlingCost = seedlingCost;
  244 + }
  245 +
  246 + public BigDecimal getSeedlingCost()
  247 + {
  248 + return seedlingCost;
  249 + }
  250 + public void setFeedQuantityKg(BigDecimal feedQuantityKg)
  251 + {
  252 + this.feedQuantityKg = feedQuantityKg;
  253 + }
  254 +
  255 + public BigDecimal getFeedQuantityKg()
  256 + {
  257 + return feedQuantityKg;
  258 + }
  259 + public void setFeedCost(BigDecimal feedCost)
  260 + {
  261 + this.feedCost = feedCost;
  262 + }
  263 +
  264 + public BigDecimal getFeedCost()
  265 + {
  266 + return feedCost;
  267 + }
  268 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  269 + {
  270 + this.animalHealthProtection = animalHealthProtection;
  271 + }
  272 +
  273 + public BigDecimal getAnimalHealthProtection()
  274 + {
  275 + return animalHealthProtection;
  276 + }
  277 + public void setConsumablesCost(BigDecimal consumablesCost)
  278 + {
  279 + this.consumablesCost = consumablesCost;
  280 + }
  281 +
  282 + public BigDecimal getConsumablesCost()
  283 + {
  284 + return consumablesCost;
  285 + }
  286 + public void setElectricityFee(BigDecimal electricityFee)
  287 + {
  288 + this.electricityFee = electricityFee;
  289 + }
  290 +
  291 + public BigDecimal getElectricityFee()
  292 + {
  293 + return electricityFee;
  294 + }
  295 + public void setLaborCost(BigDecimal laborCost)
  296 + {
  297 + this.laborCost = laborCost;
  298 + }
  299 +
  300 + public BigDecimal getLaborCost()
  301 + {
  302 + return laborCost;
  303 + }
  304 + public void setInternetFee(BigDecimal internetFee)
  305 + {
  306 + this.internetFee = internetFee;
  307 + }
  308 +
  309 + public BigDecimal getInternetFee()
  310 + {
  311 + return internetFee;
  312 + }
  313 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  314 + {
  315 + this.depreciationAndAmortization = depreciationAndAmortization;
  316 + }
  317 +
  318 + public BigDecimal getDepreciationAndAmortization()
  319 + {
  320 + return depreciationAndAmortization;
  321 + }
  322 + public void setRepairFee(BigDecimal repairFee)
  323 + {
  324 + this.repairFee = repairFee;
  325 + }
  326 +
  327 + public BigDecimal getRepairFee()
  328 + {
  329 + return repairFee;
  330 + }
  331 + public void setFuelFee(BigDecimal fuelFee)
  332 + {
  333 + this.fuelFee = fuelFee;
  334 + }
  335 +
  336 + public BigDecimal getFuelFee()
  337 + {
  338 + return fuelFee;
  339 + }
  340 + public void setLeaseFee(BigDecimal leaseFee)
  341 + {
  342 + this.leaseFee = leaseFee;
  343 + }
  344 +
  345 + public BigDecimal getLeaseFee()
  346 + {
  347 + return leaseFee;
  348 + }
  349 + public void setOtherRaisingSharedCosts(BigDecimal otherRaisingSharedCosts)
  350 + {
  351 + this.otherRaisingSharedCosts = otherRaisingSharedCosts;
  352 + }
  353 +
  354 + public BigDecimal getOtherRaisingSharedCosts()
  355 + {
  356 + return otherRaisingSharedCosts;
  357 + }
  358 + public void setFixedCosts(BigDecimal fixedCosts)
  359 + {
  360 + this.fixedCosts = fixedCosts;
  361 + }
  362 +
  363 + public BigDecimal getFixedCosts()
  364 + {
  365 + return fixedCosts;
  366 + }
  367 + public void setCageDepreciationFee(BigDecimal cageDepreciationFee)
  368 + {
  369 + this.cageDepreciationFee = cageDepreciationFee;
  370 + }
  371 +
  372 + public BigDecimal getCageDepreciationFee()
  373 + {
  374 + return cageDepreciationFee;
  375 + }
  376 + public void setCageManagementFee(BigDecimal cageManagementFee)
  377 + {
  378 + this.cageManagementFee = cageManagementFee;
  379 + }
  380 +
  381 + public BigDecimal getCageManagementFee()
  382 + {
  383 + return cageManagementFee;
  384 + }
  385 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  386 + {
  387 + this.seaAreaFee = seaAreaFee;
  388 + }
  389 +
  390 + public BigDecimal getSeaAreaFee()
  391 + {
  392 + return seaAreaFee;
  393 + }
  394 + public void setPondRent(BigDecimal pondRent)
  395 + {
  396 + this.pondRent = pondRent;
  397 + }
  398 +
  399 + public BigDecimal getPondRent()
  400 + {
  401 + return pondRent;
  402 + }
  403 + public void setTotalCost(BigDecimal totalCost)
  404 + {
  405 + this.totalCost = totalCost;
  406 + }
  407 +
  408 + public BigDecimal getTotalCost()
  409 + {
  410 + return totalCost;
  411 + }
  412 +
  413 + @Override
  414 + public String toString() {
  415 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  416 + .append("id", getId())
  417 + .append("farmName", getFarmName())
  418 + .append("raisingCycle", getRaisingCycle())
  419 + .append("raisingArea", getRaisingArea())
  420 + .append("raisingSpecies", getRaisingSpecies())
  421 + .append("pondOrCage", getPondOrCage())
  422 + .append("summary", getSummary())
  423 + .append("variableCosts", getVariableCosts())
  424 + .append("seedlingQuantity", getSeedlingQuantity())
  425 + .append("seedlingCost", getSeedlingCost())
  426 + .append("feedQuantityKg", getFeedQuantityKg())
  427 + .append("feedCost", getFeedCost())
  428 + .append("animalHealthProtection", getAnimalHealthProtection())
  429 + .append("consumablesCost", getConsumablesCost())
  430 + .append("electricityFee", getElectricityFee())
  431 + .append("laborCost", getLaborCost())
  432 + .append("internetFee", getInternetFee())
  433 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  434 + .append("repairFee", getRepairFee())
  435 + .append("fuelFee", getFuelFee())
  436 + .append("leaseFee", getLeaseFee())
  437 + .append("otherRaisingSharedCosts", getOtherRaisingSharedCosts())
  438 + .append("fixedCosts", getFixedCosts())
  439 + .append("cageDepreciationFee", getCageDepreciationFee())
  440 + .append("cageManagementFee", getCageManagementFee())
  441 + .append("seaAreaFee", getSeaAreaFee())
  442 + .append("pondRent", getPondRent())
  443 + .append("totalCost", getTotalCost())
  444 + .toString();
  445 + }
  446 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import org.apache.commons.lang3.builder.ToStringBuilder;
  5 +import org.apache.commons.lang3.builder.ToStringStyle;
  6 +import com.zhonglai.luhui.common.util.annotation.Excel;
  7 +import io.swagger.annotations.ApiModel;
  8 +import io.swagger.annotations.ApiModelProperty;
  9 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  10 +
  11 +/**
  12 + * 育苗成本月度汇总余额对象 cb_monthly_seedling_cost_summary
  13 + *
  14 + * @author zhonglai
  15 + * @date 2024-04-24
  16 + */
  17 +@ApiModel("育苗成本月度汇总余额")
  18 +public class CbMonthlySeedlingCostSummary extends BaseEntity
  19 +{
  20 + private static final long serialVersionUID = 1L;
  21 +
  22 + /** 主键ID */
  23 + private Integer id;
  24 +
  25 + /** 养殖场 */
  26 + @ApiModelProperty(value="养殖场")
  27 + @Excel(name = "养殖场")
  28 + private String farmName;
  29 +
  30 + /** 养殖区域 */
  31 + @ApiModelProperty(value="养殖区域")
  32 + @Excel(name = "养殖区域")
  33 + private String breedingArea;
  34 +
  35 + /** 育苗批次 */
  36 + @ApiModelProperty(value="育苗批次")
  37 + @Excel(name = "育苗批次")
  38 + private String seedlingBatch;
  39 +
  40 + /** 养殖品种 */
  41 + @ApiModelProperty(value="养殖品种")
  42 + @Excel(name = "养殖品种")
  43 + private String breedingSpecies;
  44 +
  45 + /** 塘口/箱号 */
  46 + @ApiModelProperty(value="塘口/箱号")
  47 + @Excel(name = "塘口/箱号")
  48 + private String pondOrCage;
  49 +
  50 + /** 摘要 */
  51 + @ApiModelProperty(value="摘要")
  52 + @Excel(name = "摘要")
  53 + private String summary;
  54 +
  55 + /** 变动成本 */
  56 + @ApiModelProperty(value="变动成本")
  57 + @Excel(name = "变动成本")
  58 + private BigDecimal variableCosts;
  59 +
  60 + /** 卵数量 */
  61 + @ApiModelProperty(value="卵数量")
  62 + @Excel(name = "卵数量")
  63 + private Integer eggQuantity;
  64 +
  65 + /** 卵成本(元) */
  66 + @ApiModelProperty(value="卵成本(元)")
  67 + @Excel(name = "卵成本(元)")
  68 + private BigDecimal eggCost;
  69 +
  70 + /** 饲料数量(kg) */
  71 + @ApiModelProperty(value="饲料数量(kg)")
  72 + @Excel(name = "饲料数量(kg)")
  73 + private BigDecimal feedQuantityKg;
  74 +
  75 + /** 饲料成本 */
  76 + @ApiModelProperty(value="饲料成本")
  77 + @Excel(name = "饲料成本")
  78 + private BigDecimal feedCost;
  79 +
  80 + /** 动保 */
  81 + @ApiModelProperty(value="动保")
  82 + @Excel(name = "动保")
  83 + private BigDecimal animalHealthProtection;
  84 +
  85 + /** 低值易耗品 */
  86 + @ApiModelProperty(value="低值易耗品")
  87 + @Excel(name = "低值易耗品")
  88 + private BigDecimal consumablesCost;
  89 +
  90 + /** 人工 */
  91 + @ApiModelProperty(value="人工")
  92 + @Excel(name = "人工")
  93 + private BigDecimal laborCost;
  94 +
  95 + /** 电费 */
  96 + @ApiModelProperty(value="电费")
  97 + @Excel(name = "电费")
  98 + private BigDecimal electricityFee;
  99 +
  100 + /** 拉网费 */
  101 + @ApiModelProperty(value="拉网费")
  102 + @Excel(name = "拉网费")
  103 + private BigDecimal netDraggingFee;
  104 +
  105 + /** 折旧与摊销 */
  106 + @ApiModelProperty(value="折旧与摊销")
  107 + @Excel(name = "折旧与摊销")
  108 + private BigDecimal depreciationAndAmortization;
  109 +
  110 + /** 修理费 */
  111 + @ApiModelProperty(value="修理费")
  112 + @Excel(name = "修理费")
  113 + private BigDecimal repairFee;
  114 +
  115 + /** 燃料费 */
  116 + @ApiModelProperty(value="燃料费")
  117 + @Excel(name = "燃料费")
  118 + private BigDecimal fuelFee;
  119 +
  120 + /** 租赁费 */
  121 + @ApiModelProperty(value="租赁费")
  122 + @Excel(name = "租赁费")
  123 + private BigDecimal leaseFee;
  124 +
  125 + /** 其他公摊 */
  126 + @ApiModelProperty(value="其他公摊")
  127 + @Excel(name = "其他公摊")
  128 + private BigDecimal otherSharedCosts;
  129 +
  130 + /** 定额费用 */
  131 + @ApiModelProperty(value="定额费用")
  132 + @Excel(name = "定额费用")
  133 + private BigDecimal fixedCosts;
  134 +
  135 + /** 网箱折旧费 */
  136 + @ApiModelProperty(value="网箱折旧费")
  137 + @Excel(name = "网箱折旧费")
  138 + private BigDecimal cageDepreciationFee;
  139 +
  140 + /** 网箱管理费 */
  141 + @ApiModelProperty(value="网箱管理费")
  142 + @Excel(name = "网箱管理费")
  143 + private BigDecimal cageManagementFee;
  144 +
  145 + /** 海域费 */
  146 + @ApiModelProperty(value="海域费")
  147 + @Excel(name = "海域费")
  148 + private BigDecimal seaAreaFee;
  149 +
  150 + /** 塘租 */
  151 + @ApiModelProperty(value="塘租")
  152 + @Excel(name = "塘租")
  153 + private BigDecimal pondRent;
  154 +
  155 + /** 成本合计 */
  156 + @ApiModelProperty(value="成本合计")
  157 + @Excel(name = "成本合计")
  158 + private BigDecimal totalCost;
  159 +
  160 + public void setId(Integer id)
  161 + {
  162 + this.id = id;
  163 + }
  164 +
  165 + public Integer getId()
  166 + {
  167 + return id;
  168 + }
  169 + public void setFarmName(String farmName)
  170 + {
  171 + this.farmName = farmName;
  172 + }
  173 +
  174 + public String getFarmName()
  175 + {
  176 + return farmName;
  177 + }
  178 + public void setBreedingArea(String breedingArea)
  179 + {
  180 + this.breedingArea = breedingArea;
  181 + }
  182 +
  183 + public String getBreedingArea()
  184 + {
  185 + return breedingArea;
  186 + }
  187 + public void setSeedlingBatch(String seedlingBatch)
  188 + {
  189 + this.seedlingBatch = seedlingBatch;
  190 + }
  191 +
  192 + public String getSeedlingBatch()
  193 + {
  194 + return seedlingBatch;
  195 + }
  196 + public void setBreedingSpecies(String breedingSpecies)
  197 + {
  198 + this.breedingSpecies = breedingSpecies;
  199 + }
  200 +
  201 + public String getBreedingSpecies()
  202 + {
  203 + return breedingSpecies;
  204 + }
  205 + public void setPondOrCage(String pondOrCage)
  206 + {
  207 + this.pondOrCage = pondOrCage;
  208 + }
  209 +
  210 + public String getPondOrCage()
  211 + {
  212 + return pondOrCage;
  213 + }
  214 + public void setSummary(String summary)
  215 + {
  216 + this.summary = summary;
  217 + }
  218 +
  219 + public String getSummary()
  220 + {
  221 + return summary;
  222 + }
  223 + public void setVariableCosts(BigDecimal variableCosts)
  224 + {
  225 + this.variableCosts = variableCosts;
  226 + }
  227 +
  228 + public BigDecimal getVariableCosts()
  229 + {
  230 + return variableCosts;
  231 + }
  232 + public void setEggQuantity(Integer eggQuantity)
  233 + {
  234 + this.eggQuantity = eggQuantity;
  235 + }
  236 +
  237 + public Integer getEggQuantity()
  238 + {
  239 + return eggQuantity;
  240 + }
  241 + public void setEggCost(BigDecimal eggCost)
  242 + {
  243 + this.eggCost = eggCost;
  244 + }
  245 +
  246 + public BigDecimal getEggCost()
  247 + {
  248 + return eggCost;
  249 + }
  250 + public void setFeedQuantityKg(BigDecimal feedQuantityKg)
  251 + {
  252 + this.feedQuantityKg = feedQuantityKg;
  253 + }
  254 +
  255 + public BigDecimal getFeedQuantityKg()
  256 + {
  257 + return feedQuantityKg;
  258 + }
  259 + public void setFeedCost(BigDecimal feedCost)
  260 + {
  261 + this.feedCost = feedCost;
  262 + }
  263 +
  264 + public BigDecimal getFeedCost()
  265 + {
  266 + return feedCost;
  267 + }
  268 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  269 + {
  270 + this.animalHealthProtection = animalHealthProtection;
  271 + }
  272 +
  273 + public BigDecimal getAnimalHealthProtection()
  274 + {
  275 + return animalHealthProtection;
  276 + }
  277 + public void setConsumablesCost(BigDecimal consumablesCost)
  278 + {
  279 + this.consumablesCost = consumablesCost;
  280 + }
  281 +
  282 + public BigDecimal getConsumablesCost()
  283 + {
  284 + return consumablesCost;
  285 + }
  286 + public void setLaborCost(BigDecimal laborCost)
  287 + {
  288 + this.laborCost = laborCost;
  289 + }
  290 +
  291 + public BigDecimal getLaborCost()
  292 + {
  293 + return laborCost;
  294 + }
  295 + public void setElectricityFee(BigDecimal electricityFee)
  296 + {
  297 + this.electricityFee = electricityFee;
  298 + }
  299 +
  300 + public BigDecimal getElectricityFee()
  301 + {
  302 + return electricityFee;
  303 + }
  304 + public void setNetDraggingFee(BigDecimal netDraggingFee)
  305 + {
  306 + this.netDraggingFee = netDraggingFee;
  307 + }
  308 +
  309 + public BigDecimal getNetDraggingFee()
  310 + {
  311 + return netDraggingFee;
  312 + }
  313 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  314 + {
  315 + this.depreciationAndAmortization = depreciationAndAmortization;
  316 + }
  317 +
  318 + public BigDecimal getDepreciationAndAmortization()
  319 + {
  320 + return depreciationAndAmortization;
  321 + }
  322 + public void setRepairFee(BigDecimal repairFee)
  323 + {
  324 + this.repairFee = repairFee;
  325 + }
  326 +
  327 + public BigDecimal getRepairFee()
  328 + {
  329 + return repairFee;
  330 + }
  331 + public void setFuelFee(BigDecimal fuelFee)
  332 + {
  333 + this.fuelFee = fuelFee;
  334 + }
  335 +
  336 + public BigDecimal getFuelFee()
  337 + {
  338 + return fuelFee;
  339 + }
  340 + public void setLeaseFee(BigDecimal leaseFee)
  341 + {
  342 + this.leaseFee = leaseFee;
  343 + }
  344 +
  345 + public BigDecimal getLeaseFee()
  346 + {
  347 + return leaseFee;
  348 + }
  349 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  350 + {
  351 + this.otherSharedCosts = otherSharedCosts;
  352 + }
  353 +
  354 + public BigDecimal getOtherSharedCosts()
  355 + {
  356 + return otherSharedCosts;
  357 + }
  358 + public void setFixedCosts(BigDecimal fixedCosts)
  359 + {
  360 + this.fixedCosts = fixedCosts;
  361 + }
  362 +
  363 + public BigDecimal getFixedCosts()
  364 + {
  365 + return fixedCosts;
  366 + }
  367 + public void setCageDepreciationFee(BigDecimal cageDepreciationFee)
  368 + {
  369 + this.cageDepreciationFee = cageDepreciationFee;
  370 + }
  371 +
  372 + public BigDecimal getCageDepreciationFee()
  373 + {
  374 + return cageDepreciationFee;
  375 + }
  376 + public void setCageManagementFee(BigDecimal cageManagementFee)
  377 + {
  378 + this.cageManagementFee = cageManagementFee;
  379 + }
  380 +
  381 + public BigDecimal getCageManagementFee()
  382 + {
  383 + return cageManagementFee;
  384 + }
  385 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  386 + {
  387 + this.seaAreaFee = seaAreaFee;
  388 + }
  389 +
  390 + public BigDecimal getSeaAreaFee()
  391 + {
  392 + return seaAreaFee;
  393 + }
  394 + public void setPondRent(BigDecimal pondRent)
  395 + {
  396 + this.pondRent = pondRent;
  397 + }
  398 +
  399 + public BigDecimal getPondRent()
  400 + {
  401 + return pondRent;
  402 + }
  403 + public void setTotalCost(BigDecimal totalCost)
  404 + {
  405 + this.totalCost = totalCost;
  406 + }
  407 +
  408 + public BigDecimal getTotalCost()
  409 + {
  410 + return totalCost;
  411 + }
  412 +
  413 + @Override
  414 + public String toString() {
  415 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  416 + .append("id", getId())
  417 + .append("farmName", getFarmName())
  418 + .append("breedingArea", getBreedingArea())
  419 + .append("seedlingBatch", getSeedlingBatch())
  420 + .append("breedingSpecies", getBreedingSpecies())
  421 + .append("pondOrCage", getPondOrCage())
  422 + .append("summary", getSummary())
  423 + .append("variableCosts", getVariableCosts())
  424 + .append("eggQuantity", getEggQuantity())
  425 + .append("eggCost", getEggCost())
  426 + .append("feedQuantityKg", getFeedQuantityKg())
  427 + .append("feedCost", getFeedCost())
  428 + .append("animalHealthProtection", getAnimalHealthProtection())
  429 + .append("consumablesCost", getConsumablesCost())
  430 + .append("laborCost", getLaborCost())
  431 + .append("electricityFee", getElectricityFee())
  432 + .append("netDraggingFee", getNetDraggingFee())
  433 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  434 + .append("repairFee", getRepairFee())
  435 + .append("fuelFee", getFuelFee())
  436 + .append("leaseFee", getLeaseFee())
  437 + .append("otherSharedCosts", getOtherSharedCosts())
  438 + .append("fixedCosts", getFixedCosts())
  439 + .append("cageDepreciationFee", getCageDepreciationFee())
  440 + .append("cageManagementFee", getCageManagementFee())
  441 + .append("seaAreaFee", getSeaAreaFee())
  442 + .append("pondRent", getPondRent())
  443 + .append("totalCost", getTotalCost())
  444 + .toString();
  445 + }
  446 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 育苗结转成本统计对象 cb_nursery_closing_cost_statistics
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("育苗结转成本统计")
  20 +public class CbNurseryClosingCostStatistics extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖区域 */
  33 + @ApiModelProperty(value="养殖区域")
  34 + @Excel(name = "养殖区域")
  35 + private String breedingArea;
  36 +
  37 + /** 育苗批次 */
  38 + @ApiModelProperty(value="育苗批次")
  39 + @Excel(name = "育苗批次")
  40 + private String nurseryBatch;
  41 +
  42 + /** 养殖品类 */
  43 + @ApiModelProperty(value="养殖品类")
  44 + @Excel(name = "养殖品类")
  45 + private String breedingCategory;
  46 +
  47 + /** 养殖品种 */
  48 + @ApiModelProperty(value="养殖品种")
  49 + @Excel(name = "养殖品种")
  50 + private String breedingSpecies;
  51 +
  52 + /** 塘口/箱号 */
  53 + @ApiModelProperty(value="塘口/箱号")
  54 + @Excel(name = "塘口/箱号")
  55 + private String pondOrBox;
  56 +
  57 + /** 操作类型 */
  58 + @ApiModelProperty(value="操作类型")
  59 + @Excel(name = "操作类型")
  60 + private String operationType;
  61 +
  62 + /** 操作日期 */
  63 + @JsonFormat(pattern = "yyyy-MM-dd")
  64 + @ApiModelProperty(value="操作日期")
  65 + @Excel(name = "操作日期", width = 30, dateFormat = "yyyy-MM-dd")
  66 + private Date operationDate;
  67 +
  68 + /** 变动成本 */
  69 + @ApiModelProperty(value="变动成本")
  70 + @Excel(name = "变动成本")
  71 + private BigDecimal variableCosts;
  72 +
  73 + /** 投卵日期 */
  74 + @JsonFormat(pattern = "yyyy-MM-dd")
  75 + @ApiModelProperty(value="投卵日期")
  76 + @Excel(name = "投卵日期", width = 30, dateFormat = "yyyy-MM-dd")
  77 + private Date eggLayingDate;
  78 +
  79 + /** 投卵数量(kg) */
  80 + @ApiModelProperty(value="投卵数量(kg)")
  81 + @Excel(name = "投卵数量(kg)")
  82 + private BigDecimal eggQuantityKg;
  83 +
  84 + /** 卵成本 */
  85 + @ApiModelProperty(value="卵成本")
  86 + @Excel(name = "卵成本")
  87 + private BigDecimal eggCost;
  88 +
  89 + /** 饲料数量(kg) */
  90 + @ApiModelProperty(value="饲料数量(kg)")
  91 + @Excel(name = "饲料数量(kg)")
  92 + private BigDecimal feedQuantityKg;
  93 +
  94 + /** 饲料金额 */
  95 + @ApiModelProperty(value="饲料金额")
  96 + @Excel(name = "饲料金额")
  97 + private BigDecimal feedAmount;
  98 +
  99 + /** 动保 */
  100 + @ApiModelProperty(value="动保")
  101 + @Excel(name = "动保")
  102 + private BigDecimal animalHealthProtection;
  103 +
  104 + /** 低值易耗品 */
  105 + @ApiModelProperty(value="低值易耗品")
  106 + @Excel(name = "低值易耗品")
  107 + private BigDecimal consumablesCost;
  108 +
  109 + /** 人工 */
  110 + @ApiModelProperty(value="人工")
  111 + @Excel(name = "人工")
  112 + private BigDecimal laborCost;
  113 +
  114 + /** 电费 */
  115 + @ApiModelProperty(value="电费")
  116 + @Excel(name = "电费")
  117 + private BigDecimal electricityFee;
  118 +
  119 + /** 拉网费 */
  120 + @ApiModelProperty(value="拉网费")
  121 + @Excel(name = "拉网费")
  122 + private BigDecimal netDraggingFee;
  123 +
  124 + /** 折旧与摊销 */
  125 + @ApiModelProperty(value="折旧与摊销")
  126 + @Excel(name = "折旧与摊销")
  127 + private BigDecimal depreciationAndAmortization;
  128 +
  129 + /** 修理费 */
  130 + @ApiModelProperty(value="修理费")
  131 + @Excel(name = "修理费")
  132 + private BigDecimal repairFee;
  133 +
  134 + /** 燃料费 */
  135 + @ApiModelProperty(value="燃料费")
  136 + @Excel(name = "燃料费")
  137 + private BigDecimal fuelFee;
  138 +
  139 + /** 租赁费 */
  140 + @ApiModelProperty(value="租赁费")
  141 + @Excel(name = "租赁费")
  142 + private BigDecimal leaseFee;
  143 +
  144 + /** 其他公摊费 */
  145 + @ApiModelProperty(value="其他公摊费")
  146 + @Excel(name = "其他公摊费")
  147 + private BigDecimal otherSharedCosts;
  148 +
  149 + /** 定额费用 */
  150 + @ApiModelProperty(value="定额费用")
  151 + @Excel(name = "定额费用")
  152 + private BigDecimal fixedCosts;
  153 +
  154 + /** 网箱折旧 */
  155 + @ApiModelProperty(value="网箱折旧")
  156 + @Excel(name = "网箱折旧")
  157 + private BigDecimal cageDepreciation;
  158 +
  159 + /** 网箱管理费 */
  160 + @ApiModelProperty(value="网箱管理费")
  161 + @Excel(name = "网箱管理费")
  162 + private BigDecimal cageManagementFee;
  163 +
  164 + /** 海域费 */
  165 + @ApiModelProperty(value="海域费")
  166 + @Excel(name = "海域费")
  167 + private BigDecimal seaAreaFee;
  168 +
  169 + /** 塘租 */
  170 + @ApiModelProperty(value="塘租")
  171 + @Excel(name = "塘租")
  172 + private BigDecimal pondRent;
  173 +
  174 + /** 成本合计 */
  175 + @ApiModelProperty(value="成本合计")
  176 + @Excel(name = "成本合计")
  177 + private BigDecimal totalCost;
  178 +
  179 + public void setId(Integer id)
  180 + {
  181 + this.id = id;
  182 + }
  183 +
  184 + public Integer getId()
  185 + {
  186 + return id;
  187 + }
  188 + public void setFarmName(String farmName)
  189 + {
  190 + this.farmName = farmName;
  191 + }
  192 +
  193 + public String getFarmName()
  194 + {
  195 + return farmName;
  196 + }
  197 + public void setBreedingArea(String breedingArea)
  198 + {
  199 + this.breedingArea = breedingArea;
  200 + }
  201 +
  202 + public String getBreedingArea()
  203 + {
  204 + return breedingArea;
  205 + }
  206 + public void setNurseryBatch(String nurseryBatch)
  207 + {
  208 + this.nurseryBatch = nurseryBatch;
  209 + }
  210 +
  211 + public String getNurseryBatch()
  212 + {
  213 + return nurseryBatch;
  214 + }
  215 + public void setBreedingCategory(String breedingCategory)
  216 + {
  217 + this.breedingCategory = breedingCategory;
  218 + }
  219 +
  220 + public String getBreedingCategory()
  221 + {
  222 + return breedingCategory;
  223 + }
  224 + public void setBreedingSpecies(String breedingSpecies)
  225 + {
  226 + this.breedingSpecies = breedingSpecies;
  227 + }
  228 +
  229 + public String getBreedingSpecies()
  230 + {
  231 + return breedingSpecies;
  232 + }
  233 + public void setPondOrBox(String pondOrBox)
  234 + {
  235 + this.pondOrBox = pondOrBox;
  236 + }
  237 +
  238 + public String getPondOrBox()
  239 + {
  240 + return pondOrBox;
  241 + }
  242 + public void setOperationType(String operationType)
  243 + {
  244 + this.operationType = operationType;
  245 + }
  246 +
  247 + public String getOperationType()
  248 + {
  249 + return operationType;
  250 + }
  251 + public void setOperationDate(Date operationDate)
  252 + {
  253 + this.operationDate = operationDate;
  254 + }
  255 +
  256 + public Date getOperationDate()
  257 + {
  258 + return operationDate;
  259 + }
  260 + public void setVariableCosts(BigDecimal variableCosts)
  261 + {
  262 + this.variableCosts = variableCosts;
  263 + }
  264 +
  265 + public BigDecimal getVariableCosts()
  266 + {
  267 + return variableCosts;
  268 + }
  269 + public void setEggLayingDate(Date eggLayingDate)
  270 + {
  271 + this.eggLayingDate = eggLayingDate;
  272 + }
  273 +
  274 + public Date getEggLayingDate()
  275 + {
  276 + return eggLayingDate;
  277 + }
  278 + public void setEggQuantityKg(BigDecimal eggQuantityKg)
  279 + {
  280 + this.eggQuantityKg = eggQuantityKg;
  281 + }
  282 +
  283 + public BigDecimal getEggQuantityKg()
  284 + {
  285 + return eggQuantityKg;
  286 + }
  287 + public void setEggCost(BigDecimal eggCost)
  288 + {
  289 + this.eggCost = eggCost;
  290 + }
  291 +
  292 + public BigDecimal getEggCost()
  293 + {
  294 + return eggCost;
  295 + }
  296 + public void setFeedQuantityKg(BigDecimal feedQuantityKg)
  297 + {
  298 + this.feedQuantityKg = feedQuantityKg;
  299 + }
  300 +
  301 + public BigDecimal getFeedQuantityKg()
  302 + {
  303 + return feedQuantityKg;
  304 + }
  305 + public void setFeedAmount(BigDecimal feedAmount)
  306 + {
  307 + this.feedAmount = feedAmount;
  308 + }
  309 +
  310 + public BigDecimal getFeedAmount()
  311 + {
  312 + return feedAmount;
  313 + }
  314 + public void setAnimalHealthProtection(BigDecimal animalHealthProtection)
  315 + {
  316 + this.animalHealthProtection = animalHealthProtection;
  317 + }
  318 +
  319 + public BigDecimal getAnimalHealthProtection()
  320 + {
  321 + return animalHealthProtection;
  322 + }
  323 + public void setConsumablesCost(BigDecimal consumablesCost)
  324 + {
  325 + this.consumablesCost = consumablesCost;
  326 + }
  327 +
  328 + public BigDecimal getConsumablesCost()
  329 + {
  330 + return consumablesCost;
  331 + }
  332 + public void setLaborCost(BigDecimal laborCost)
  333 + {
  334 + this.laborCost = laborCost;
  335 + }
  336 +
  337 + public BigDecimal getLaborCost()
  338 + {
  339 + return laborCost;
  340 + }
  341 + public void setElectricityFee(BigDecimal electricityFee)
  342 + {
  343 + this.electricityFee = electricityFee;
  344 + }
  345 +
  346 + public BigDecimal getElectricityFee()
  347 + {
  348 + return electricityFee;
  349 + }
  350 + public void setNetDraggingFee(BigDecimal netDraggingFee)
  351 + {
  352 + this.netDraggingFee = netDraggingFee;
  353 + }
  354 +
  355 + public BigDecimal getNetDraggingFee()
  356 + {
  357 + return netDraggingFee;
  358 + }
  359 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  360 + {
  361 + this.depreciationAndAmortization = depreciationAndAmortization;
  362 + }
  363 +
  364 + public BigDecimal getDepreciationAndAmortization()
  365 + {
  366 + return depreciationAndAmortization;
  367 + }
  368 + public void setRepairFee(BigDecimal repairFee)
  369 + {
  370 + this.repairFee = repairFee;
  371 + }
  372 +
  373 + public BigDecimal getRepairFee()
  374 + {
  375 + return repairFee;
  376 + }
  377 + public void setFuelFee(BigDecimal fuelFee)
  378 + {
  379 + this.fuelFee = fuelFee;
  380 + }
  381 +
  382 + public BigDecimal getFuelFee()
  383 + {
  384 + return fuelFee;
  385 + }
  386 + public void setLeaseFee(BigDecimal leaseFee)
  387 + {
  388 + this.leaseFee = leaseFee;
  389 + }
  390 +
  391 + public BigDecimal getLeaseFee()
  392 + {
  393 + return leaseFee;
  394 + }
  395 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  396 + {
  397 + this.otherSharedCosts = otherSharedCosts;
  398 + }
  399 +
  400 + public BigDecimal getOtherSharedCosts()
  401 + {
  402 + return otherSharedCosts;
  403 + }
  404 + public void setFixedCosts(BigDecimal fixedCosts)
  405 + {
  406 + this.fixedCosts = fixedCosts;
  407 + }
  408 +
  409 + public BigDecimal getFixedCosts()
  410 + {
  411 + return fixedCosts;
  412 + }
  413 + public void setCageDepreciation(BigDecimal cageDepreciation)
  414 + {
  415 + this.cageDepreciation = cageDepreciation;
  416 + }
  417 +
  418 + public BigDecimal getCageDepreciation()
  419 + {
  420 + return cageDepreciation;
  421 + }
  422 + public void setCageManagementFee(BigDecimal cageManagementFee)
  423 + {
  424 + this.cageManagementFee = cageManagementFee;
  425 + }
  426 +
  427 + public BigDecimal getCageManagementFee()
  428 + {
  429 + return cageManagementFee;
  430 + }
  431 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  432 + {
  433 + this.seaAreaFee = seaAreaFee;
  434 + }
  435 +
  436 + public BigDecimal getSeaAreaFee()
  437 + {
  438 + return seaAreaFee;
  439 + }
  440 + public void setPondRent(BigDecimal pondRent)
  441 + {
  442 + this.pondRent = pondRent;
  443 + }
  444 +
  445 + public BigDecimal getPondRent()
  446 + {
  447 + return pondRent;
  448 + }
  449 + public void setTotalCost(BigDecimal totalCost)
  450 + {
  451 + this.totalCost = totalCost;
  452 + }
  453 +
  454 + public BigDecimal getTotalCost()
  455 + {
  456 + return totalCost;
  457 + }
  458 +
  459 + @Override
  460 + public String toString() {
  461 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  462 + .append("id", getId())
  463 + .append("farmName", getFarmName())
  464 + .append("breedingArea", getBreedingArea())
  465 + .append("nurseryBatch", getNurseryBatch())
  466 + .append("breedingCategory", getBreedingCategory())
  467 + .append("breedingSpecies", getBreedingSpecies())
  468 + .append("pondOrBox", getPondOrBox())
  469 + .append("operationType", getOperationType())
  470 + .append("operationDate", getOperationDate())
  471 + .append("variableCosts", getVariableCosts())
  472 + .append("eggLayingDate", getEggLayingDate())
  473 + .append("eggQuantityKg", getEggQuantityKg())
  474 + .append("eggCost", getEggCost())
  475 + .append("feedQuantityKg", getFeedQuantityKg())
  476 + .append("feedAmount", getFeedAmount())
  477 + .append("animalHealthProtection", getAnimalHealthProtection())
  478 + .append("consumablesCost", getConsumablesCost())
  479 + .append("laborCost", getLaborCost())
  480 + .append("electricityFee", getElectricityFee())
  481 + .append("netDraggingFee", getNetDraggingFee())
  482 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  483 + .append("repairFee", getRepairFee())
  484 + .append("fuelFee", getFuelFee())
  485 + .append("leaseFee", getLeaseFee())
  486 + .append("otherSharedCosts", getOtherSharedCosts())
  487 + .append("fixedCosts", getFixedCosts())
  488 + .append("cageDepreciation", getCageDepreciation())
  489 + .append("cageManagementFee", getCageManagementFee())
  490 + .append("seaAreaFee", getSeaAreaFee())
  491 + .append("pondRent", getPondRent())
  492 + .append("totalCost", getTotalCost())
  493 + .toString();
  494 + }
  495 +}
  1 +package com.zhonglai.luhui.domain.cb;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +import com.fasterxml.jackson.annotation.JsonFormat;
  6 +import org.apache.commons.lang3.builder.ToStringBuilder;
  7 +import org.apache.commons.lang3.builder.ToStringStyle;
  8 +import com.zhonglai.luhui.common.util.annotation.Excel;
  9 +import io.swagger.annotations.ApiModel;
  10 +import io.swagger.annotations.ApiModelProperty;
  11 +import com.zhonglai.luhui.common.util.domain.BaseEntity;
  12 +
  13 +/**
  14 + * 育苗存塘成本统计对象 cb_nursery_stock_cost_statistics
  15 + *
  16 + * @author zhonglai
  17 + * @date 2024-04-24
  18 + */
  19 +@ApiModel("育苗存塘成本统计")
  20 +public class CbNurseryStockCostStatistics extends BaseEntity
  21 +{
  22 + private static final long serialVersionUID = 1L;
  23 +
  24 + /** 主键ID */
  25 + private Integer id;
  26 +
  27 + /** 养殖场 */
  28 + @ApiModelProperty(value="养殖场")
  29 + @Excel(name = "养殖场")
  30 + private String farmName;
  31 +
  32 + /** 养殖区域 */
  33 + @ApiModelProperty(value="养殖区域")
  34 + @Excel(name = "养殖区域")
  35 + private String breedingArea;
  36 +
  37 + /** 育苗批次 */
  38 + @ApiModelProperty(value="育苗批次")
  39 + @Excel(name = "育苗批次")
  40 + private String nurseryBatch;
  41 +
  42 + /** 养殖品类 */
  43 + @ApiModelProperty(value="养殖品类")
  44 + @Excel(name = "养殖品类")
  45 + private String breedingCategory;
  46 +
  47 + /** 养殖品种 */
  48 + @ApiModelProperty(value="养殖品种")
  49 + @Excel(name = "养殖品种")
  50 + private String breedingSpecies;
  51 +
  52 + /** 塘口/箱号 */
  53 + @ApiModelProperty(value="塘口/箱号")
  54 + @Excel(name = "塘口/箱号")
  55 + private String pondOrBox;
  56 +
  57 + /** 成本日期 */
  58 + @JsonFormat(pattern = "yyyy-MM-dd")
  59 + @ApiModelProperty(value="成本日期")
  60 + @Excel(name = "成本日期", width = 30, dateFormat = "yyyy-MM-dd")
  61 + private Date costDate;
  62 +
  63 + /** 变动成本 */
  64 + @ApiModelProperty(value="变动成本")
  65 + @Excel(name = "变动成本")
  66 + private BigDecimal variableCosts;
  67 +
  68 + /** 投卵日期 */
  69 + @JsonFormat(pattern = "yyyy-MM-dd")
  70 + @ApiModelProperty(value="投卵日期")
  71 + @Excel(name = "投卵日期", width = 30, dateFormat = "yyyy-MM-dd")
  72 + private Date eggLayingDate;
  73 +
  74 + /** 投卵数量(kg) */
  75 + @ApiModelProperty(value="投卵数量(kg)")
  76 + @Excel(name = "投卵数量(kg)")
  77 + private BigDecimal eggQuantityKg;
  78 +
  79 + /** 卵成本(元) */
  80 + @ApiModelProperty(value="卵成本(元)")
  81 + @Excel(name = "卵成本(元)")
  82 + private BigDecimal eggCost;
  83 +
  84 + /** 饲料数量(kg) */
  85 + @ApiModelProperty(value="饲料数量(kg)")
  86 + @Excel(name = "饲料数量(kg)")
  87 + private BigDecimal feedQuantityKg;
  88 +
  89 + /** 饲料金额(元) */
  90 + @ApiModelProperty(value="饲料金额(元)")
  91 + @Excel(name = "饲料金额(元)")
  92 + private BigDecimal feedAmount;
  93 +
  94 + /** 动保(元) */
  95 + @ApiModelProperty(value="动保(元)")
  96 + @Excel(name = "动保(元)")
  97 + private BigDecimal animalHealthProtectionCost;
  98 +
  99 + /** 低值易耗品(元) */
  100 + @ApiModelProperty(value="低值易耗品(元)")
  101 + @Excel(name = "低值易耗品(元)")
  102 + private BigDecimal consumablesCost;
  103 +
  104 + /** 人工(元) */
  105 + @ApiModelProperty(value="人工(元)")
  106 + @Excel(name = "人工(元)")
  107 + private BigDecimal laborCost;
  108 +
  109 + /** 电费(元) */
  110 + @ApiModelProperty(value="电费(元)")
  111 + @Excel(name = "电费(元)")
  112 + private BigDecimal electricityFee;
  113 +
  114 + /** 拉网费 */
  115 + @ApiModelProperty(value="拉网费")
  116 + @Excel(name = "拉网费")
  117 + private BigDecimal nettingFee;
  118 +
  119 + /** 折旧与摊销 */
  120 + @ApiModelProperty(value="折旧与摊销")
  121 + @Excel(name = "折旧与摊销")
  122 + private BigDecimal depreciationAndAmortization;
  123 +
  124 + /** 修理费 */
  125 + @ApiModelProperty(value="修理费")
  126 + @Excel(name = "修理费")
  127 + private BigDecimal repairFee;
  128 +
  129 + /** 燃料费 */
  130 + @ApiModelProperty(value="燃料费")
  131 + @Excel(name = "燃料费")
  132 + private BigDecimal fuelFee;
  133 +
  134 + /** 租赁费 */
  135 + @ApiModelProperty(value="租赁费")
  136 + @Excel(name = "租赁费")
  137 + private BigDecimal leaseFee;
  138 +
  139 + /** 其他公摊费 */
  140 + @ApiModelProperty(value="其他公摊费")
  141 + @Excel(name = "其他公摊费")
  142 + private BigDecimal otherSharedCosts;
  143 +
  144 + /** 定额费用 */
  145 + @ApiModelProperty(value="定额费用")
  146 + @Excel(name = "定额费用")
  147 + private BigDecimal fixedCosts;
  148 +
  149 + /** 网箱折旧(元) */
  150 + @ApiModelProperty(value="网箱折旧(元)")
  151 + @Excel(name = "网箱折旧(元)")
  152 + private BigDecimal cageDepreciation;
  153 +
  154 + /** 箱管理费(元) */
  155 + @ApiModelProperty(value="箱管理费(元)")
  156 + @Excel(name = "箱管理费(元)")
  157 + private BigDecimal boxManagementFee;
  158 +
  159 + /** 海域费(元) */
  160 + @ApiModelProperty(value="海域费(元)")
  161 + @Excel(name = "海域费(元)")
  162 + private BigDecimal seaAreaFee;
  163 +
  164 + /** 塘租 */
  165 + @ApiModelProperty(value="塘租")
  166 + @Excel(name = "塘租")
  167 + private BigDecimal pondRent;
  168 +
  169 + /** 成本合计 */
  170 + @ApiModelProperty(value="成本合计")
  171 + @Excel(name = "成本合计")
  172 + private BigDecimal totalCost;
  173 +
  174 + /** 育苗天数 */
  175 + @ApiModelProperty(value="育苗天数")
  176 + @Excel(name = "育苗天数")
  177 + private Integer nurseryDays;
  178 +
  179 + /** 存塘规格 */
  180 + @ApiModelProperty(value="存塘规格")
  181 + @Excel(name = "存塘规格")
  182 + private String stockSpecification;
  183 +
  184 + /** 存塘数量 */
  185 + @ApiModelProperty(value="存塘数量")
  186 + @Excel(name = "存塘数量")
  187 + private Long stockQuantity;
  188 +
  189 + /** 单位成本 */
  190 + @ApiModelProperty(value="单位成本")
  191 + @Excel(name = "单位成本")
  192 + private BigDecimal unitCost;
  193 +
  194 + public void setId(Integer id)
  195 + {
  196 + this.id = id;
  197 + }
  198 +
  199 + public Integer getId()
  200 + {
  201 + return id;
  202 + }
  203 + public void setFarmName(String farmName)
  204 + {
  205 + this.farmName = farmName;
  206 + }
  207 +
  208 + public String getFarmName()
  209 + {
  210 + return farmName;
  211 + }
  212 + public void setBreedingArea(String breedingArea)
  213 + {
  214 + this.breedingArea = breedingArea;
  215 + }
  216 +
  217 + public String getBreedingArea()
  218 + {
  219 + return breedingArea;
  220 + }
  221 + public void setNurseryBatch(String nurseryBatch)
  222 + {
  223 + this.nurseryBatch = nurseryBatch;
  224 + }
  225 +
  226 + public String getNurseryBatch()
  227 + {
  228 + return nurseryBatch;
  229 + }
  230 + public void setBreedingCategory(String breedingCategory)
  231 + {
  232 + this.breedingCategory = breedingCategory;
  233 + }
  234 +
  235 + public String getBreedingCategory()
  236 + {
  237 + return breedingCategory;
  238 + }
  239 + public void setBreedingSpecies(String breedingSpecies)
  240 + {
  241 + this.breedingSpecies = breedingSpecies;
  242 + }
  243 +
  244 + public String getBreedingSpecies()
  245 + {
  246 + return breedingSpecies;
  247 + }
  248 + public void setPondOrBox(String pondOrBox)
  249 + {
  250 + this.pondOrBox = pondOrBox;
  251 + }
  252 +
  253 + public String getPondOrBox()
  254 + {
  255 + return pondOrBox;
  256 + }
  257 + public void setCostDate(Date costDate)
  258 + {
  259 + this.costDate = costDate;
  260 + }
  261 +
  262 + public Date getCostDate()
  263 + {
  264 + return costDate;
  265 + }
  266 + public void setVariableCosts(BigDecimal variableCosts)
  267 + {
  268 + this.variableCosts = variableCosts;
  269 + }
  270 +
  271 + public BigDecimal getVariableCosts()
  272 + {
  273 + return variableCosts;
  274 + }
  275 + public void setEggLayingDate(Date eggLayingDate)
  276 + {
  277 + this.eggLayingDate = eggLayingDate;
  278 + }
  279 +
  280 + public Date getEggLayingDate()
  281 + {
  282 + return eggLayingDate;
  283 + }
  284 + public void setEggQuantityKg(BigDecimal eggQuantityKg)
  285 + {
  286 + this.eggQuantityKg = eggQuantityKg;
  287 + }
  288 +
  289 + public BigDecimal getEggQuantityKg()
  290 + {
  291 + return eggQuantityKg;
  292 + }
  293 + public void setEggCost(BigDecimal eggCost)
  294 + {
  295 + this.eggCost = eggCost;
  296 + }
  297 +
  298 + public BigDecimal getEggCost()
  299 + {
  300 + return eggCost;
  301 + }
  302 + public void setFeedQuantityKg(BigDecimal feedQuantityKg)
  303 + {
  304 + this.feedQuantityKg = feedQuantityKg;
  305 + }
  306 +
  307 + public BigDecimal getFeedQuantityKg()
  308 + {
  309 + return feedQuantityKg;
  310 + }
  311 + public void setFeedAmount(BigDecimal feedAmount)
  312 + {
  313 + this.feedAmount = feedAmount;
  314 + }
  315 +
  316 + public BigDecimal getFeedAmount()
  317 + {
  318 + return feedAmount;
  319 + }
  320 + public void setAnimalHealthProtectionCost(BigDecimal animalHealthProtectionCost)
  321 + {
  322 + this.animalHealthProtectionCost = animalHealthProtectionCost;
  323 + }
  324 +
  325 + public BigDecimal getAnimalHealthProtectionCost()
  326 + {
  327 + return animalHealthProtectionCost;
  328 + }
  329 + public void setConsumablesCost(BigDecimal consumablesCost)
  330 + {
  331 + this.consumablesCost = consumablesCost;
  332 + }
  333 +
  334 + public BigDecimal getConsumablesCost()
  335 + {
  336 + return consumablesCost;
  337 + }
  338 + public void setLaborCost(BigDecimal laborCost)
  339 + {
  340 + this.laborCost = laborCost;
  341 + }
  342 +
  343 + public BigDecimal getLaborCost()
  344 + {
  345 + return laborCost;
  346 + }
  347 + public void setElectricityFee(BigDecimal electricityFee)
  348 + {
  349 + this.electricityFee = electricityFee;
  350 + }
  351 +
  352 + public BigDecimal getElectricityFee()
  353 + {
  354 + return electricityFee;
  355 + }
  356 + public void setNettingFee(BigDecimal nettingFee)
  357 + {
  358 + this.nettingFee = nettingFee;
  359 + }
  360 +
  361 + public BigDecimal getNettingFee()
  362 + {
  363 + return nettingFee;
  364 + }
  365 + public void setDepreciationAndAmortization(BigDecimal depreciationAndAmortization)
  366 + {
  367 + this.depreciationAndAmortization = depreciationAndAmortization;
  368 + }
  369 +
  370 + public BigDecimal getDepreciationAndAmortization()
  371 + {
  372 + return depreciationAndAmortization;
  373 + }
  374 + public void setRepairFee(BigDecimal repairFee)
  375 + {
  376 + this.repairFee = repairFee;
  377 + }
  378 +
  379 + public BigDecimal getRepairFee()
  380 + {
  381 + return repairFee;
  382 + }
  383 + public void setFuelFee(BigDecimal fuelFee)
  384 + {
  385 + this.fuelFee = fuelFee;
  386 + }
  387 +
  388 + public BigDecimal getFuelFee()
  389 + {
  390 + return fuelFee;
  391 + }
  392 + public void setLeaseFee(BigDecimal leaseFee)
  393 + {
  394 + this.leaseFee = leaseFee;
  395 + }
  396 +
  397 + public BigDecimal getLeaseFee()
  398 + {
  399 + return leaseFee;
  400 + }
  401 + public void setOtherSharedCosts(BigDecimal otherSharedCosts)
  402 + {
  403 + this.otherSharedCosts = otherSharedCosts;
  404 + }
  405 +
  406 + public BigDecimal getOtherSharedCosts()
  407 + {
  408 + return otherSharedCosts;
  409 + }
  410 + public void setFixedCosts(BigDecimal fixedCosts)
  411 + {
  412 + this.fixedCosts = fixedCosts;
  413 + }
  414 +
  415 + public BigDecimal getFixedCosts()
  416 + {
  417 + return fixedCosts;
  418 + }
  419 + public void setCageDepreciation(BigDecimal cageDepreciation)
  420 + {
  421 + this.cageDepreciation = cageDepreciation;
  422 + }
  423 +
  424 + public BigDecimal getCageDepreciation()
  425 + {
  426 + return cageDepreciation;
  427 + }
  428 + public void setBoxManagementFee(BigDecimal boxManagementFee)
  429 + {
  430 + this.boxManagementFee = boxManagementFee;
  431 + }
  432 +
  433 + public BigDecimal getBoxManagementFee()
  434 + {
  435 + return boxManagementFee;
  436 + }
  437 + public void setSeaAreaFee(BigDecimal seaAreaFee)
  438 + {
  439 + this.seaAreaFee = seaAreaFee;
  440 + }
  441 +
  442 + public BigDecimal getSeaAreaFee()
  443 + {
  444 + return seaAreaFee;
  445 + }
  446 + public void setPondRent(BigDecimal pondRent)
  447 + {
  448 + this.pondRent = pondRent;
  449 + }
  450 +
  451 + public BigDecimal getPondRent()
  452 + {
  453 + return pondRent;
  454 + }
  455 + public void setTotalCost(BigDecimal totalCost)
  456 + {
  457 + this.totalCost = totalCost;
  458 + }
  459 +
  460 + public BigDecimal getTotalCost()
  461 + {
  462 + return totalCost;
  463 + }
  464 + public void setNurseryDays(Integer nurseryDays)
  465 + {
  466 + this.nurseryDays = nurseryDays;
  467 + }
  468 +
  469 + public Integer getNurseryDays()
  470 + {
  471 + return nurseryDays;
  472 + }
  473 + public void setStockSpecification(String stockSpecification)
  474 + {
  475 + this.stockSpecification = stockSpecification;
  476 + }
  477 +
  478 + public String getStockSpecification()
  479 + {
  480 + return stockSpecification;
  481 + }
  482 + public void setStockQuantity(Long stockQuantity)
  483 + {
  484 + this.stockQuantity = stockQuantity;
  485 + }
  486 +
  487 + public Long getStockQuantity()
  488 + {
  489 + return stockQuantity;
  490 + }
  491 + public void setUnitCost(BigDecimal unitCost)
  492 + {
  493 + this.unitCost = unitCost;
  494 + }
  495 +
  496 + public BigDecimal getUnitCost()
  497 + {
  498 + return unitCost;
  499 + }
  500 +
  501 + @Override
  502 + public String toString() {
  503 + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  504 + .append("id", getId())
  505 + .append("farmName", getFarmName())
  506 + .append("breedingArea", getBreedingArea())
  507 + .append("nurseryBatch", getNurseryBatch())
  508 + .append("breedingCategory", getBreedingCategory())
  509 + .append("breedingSpecies", getBreedingSpecies())
  510 + .append("pondOrBox", getPondOrBox())
  511 + .append("costDate", getCostDate())
  512 + .append("variableCosts", getVariableCosts())
  513 + .append("eggLayingDate", getEggLayingDate())
  514 + .append("eggQuantityKg", getEggQuantityKg())
  515 + .append("eggCost", getEggCost())
  516 + .append("feedQuantityKg", getFeedQuantityKg())
  517 + .append("feedAmount", getFeedAmount())
  518 + .append("animalHealthProtectionCost", getAnimalHealthProtectionCost())
  519 + .append("consumablesCost", getConsumablesCost())
  520 + .append("laborCost", getLaborCost())
  521 + .append("electricityFee", getElectricityFee())
  522 + .append("nettingFee", getNettingFee())
  523 + .append("depreciationAndAmortization", getDepreciationAndAmortization())
  524 + .append("repairFee", getRepairFee())
  525 + .append("fuelFee", getFuelFee())
  526 + .append("leaseFee", getLeaseFee())
  527 + .append("otherSharedCosts", getOtherSharedCosts())
  528 + .append("fixedCosts", getFixedCosts())
  529 + .append("cageDepreciation", getCageDepreciation())
  530 + .append("boxManagementFee", getBoxManagementFee())
  531 + .append("seaAreaFee", getSeaAreaFee())
  532 + .append("pondRent", getPondRent())
  533 + .append("totalCost", getTotalCost())
  534 + .append("nurseryDays", getNurseryDays())
  535 + .append("stockSpecification", getStockSpecification())
  536 + .append("stockQuantity", getStockQuantity())
  537 + .append("unitCost", getUnitCost())
  538 + .toString();
  539 + }
  540 +}