|
@@ -0,0 +1,86 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
+ */
|
|
|
+package org.springblade.meter.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import org.springblade.core.mp.base.BaseEntity;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 合同材料表实体类
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2023-11-29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("s_contract_material_adjust_detail")
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+public class ContractMaterialAdjustDetail extends BaseEntity {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "项目id")
|
|
|
+ private Long projectId;
|
|
|
+ /**
|
|
|
+ * 合同段id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "合同段id")
|
|
|
+ private Long contractId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "合同材料id")
|
|
|
+ private Long contractMaterialId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "中间计量申请id")
|
|
|
+ private Long middleMeterId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "计量单编号")
|
|
|
+ private Long meterNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "合同工程清单id")
|
|
|
+ private Long contractFormId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "清单编号")
|
|
|
+ private String formNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "清单名称")
|
|
|
+ private String formName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "单位")
|
|
|
+ private String unit;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "计量数量")
|
|
|
+ private BigDecimal meterTotal;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "可调数量")
|
|
|
+ private BigDecimal changeTotal;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "调差系数")
|
|
|
+ private BigDecimal adjustFactor;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "调差数量")
|
|
|
+ private BigDecimal adjustTotal;
|
|
|
+
|
|
|
+
|
|
|
+}
|