|
@@ -0,0 +1,141 @@
|
|
|
|
+package com.yh.saas.plugin.yiliangyiyun.entity;
|
|
|
|
+
|
|
|
|
+import java.util.Date;
|
|
|
|
+import com.baomidou.mybatisplus.activerecord.Model;
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
|
+import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
|
+import com.baomidou.mybatisplus.annotations.Version;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.enums.IdType;
|
|
|
|
+import com.yh.saas.common.support.entity.BaseModel;
|
|
|
|
+import lombok.Data;
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
+import lombok.experimental.Accessors;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ * 汽运结算报表
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author Gongdc
|
|
|
|
+ * @since 2021-08-27
|
|
|
|
+ */
|
|
|
|
+@Data
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
|
+@Accessors(chain = true)
|
|
|
|
+@TableName("tran_settlement_report")
|
|
|
|
+public class TranSettlementReport extends BaseModel<TranSettlementReport> {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 主键
|
|
|
|
+ */
|
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
|
+ private String id;
|
|
|
|
+ /**
|
|
|
|
+ * 公司id
|
|
|
|
+ */
|
|
|
|
+ private String compId;
|
|
|
|
+ /**
|
|
|
|
+ * 合同编号
|
|
|
|
+ */
|
|
|
|
+ private String contractNo;
|
|
|
|
+ /**
|
|
|
|
+ * 运输阶段
|
|
|
|
+ */
|
|
|
|
+ private String processNo;
|
|
|
|
+ /**
|
|
|
|
+ * 电话
|
|
|
|
+ */
|
|
|
|
+ private String phone;
|
|
|
|
+ /**
|
|
|
|
+ * 姓名
|
|
|
|
+ */
|
|
|
|
+ private String name;
|
|
|
|
+ /**
|
|
|
|
+ * 派车编号
|
|
|
|
+ */
|
|
|
|
+ private String tranCarNo;
|
|
|
|
+ /**
|
|
|
|
+ * 车牌号
|
|
|
|
+ */
|
|
|
|
+ private String carNo;
|
|
|
|
+ /**
|
|
|
|
+ * 装车净重(吨)
|
|
|
|
+ */
|
|
|
|
+ private Float loadingWeight;
|
|
|
|
+ /**
|
|
|
|
+ * 卸车净重(吨)
|
|
|
|
+ */
|
|
|
|
+ private Float unloadingWeight;
|
|
|
|
+ /**
|
|
|
|
+ * 损耗(吨)
|
|
|
|
+ */
|
|
|
|
+ private Float lossWeight;
|
|
|
|
+ /**
|
|
|
|
+ * 运输单价(元/吨)
|
|
|
|
+ */
|
|
|
|
+ private Float transportPrice;
|
|
|
|
+ /**
|
|
|
|
+ * 结算重量(吨)
|
|
|
|
+ */
|
|
|
|
+ private Float settlementWeight;
|
|
|
|
+ /**
|
|
|
|
+ * 扣款(元)
|
|
|
|
+ */
|
|
|
|
+ private String deductionAmount;
|
|
|
|
+ /**
|
|
|
|
+ * 应付金额(元/吨)
|
|
|
|
+ */
|
|
|
|
+ private Float amountIngPayable;
|
|
|
|
+ /**
|
|
|
|
+ * 已付金额(元/吨)
|
|
|
|
+ */
|
|
|
|
+ private Float amountEdPayable;
|
|
|
|
+ /**
|
|
|
|
+ * 未付金额(元/吨)
|
|
|
|
+ */
|
|
|
|
+ private Float amountNotPayable;
|
|
|
|
+ /**
|
|
|
|
+ * 已开发票(元)
|
|
|
|
+ */
|
|
|
|
+ private Float alreadyInvoice;
|
|
|
|
+ /**
|
|
|
|
+ * 付款日期
|
|
|
|
+ */
|
|
|
|
+ private Date paymentDate;
|
|
|
|
+ /**
|
|
|
|
+ * 状态标识
|
|
|
|
+ */
|
|
|
|
+ private String statusFlag;
|
|
|
|
+ /**
|
|
|
|
+ * 状态
|
|
|
|
+ */
|
|
|
|
+ private String status;
|
|
|
|
+ /**
|
|
|
|
+ * 状态英文
|
|
|
|
+ */
|
|
|
|
+ private String statusEn;
|
|
|
|
+ /**
|
|
|
|
+ * 审核状态
|
|
|
|
+ */
|
|
|
|
+ private String approveStatus;
|
|
|
|
+ /**
|
|
|
|
+ * 付款截图
|
|
|
|
+ */
|
|
|
|
+ private String paymentScreenshot;
|
|
|
|
+ /**
|
|
|
|
+ * 审核流id
|
|
|
|
+ */
|
|
|
|
+ private String workflowId;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ protected Serializable pkVal() {
|
|
|
|
+ return this.id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|