|
@@ -10,6 +10,7 @@ import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
import com.baomidou.mybatisplus.enums.IdType;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.winsea.svc.notice.entity.NoticeTaskInfo;
|
|
|
import com.yh.saas.common.support.entity.BaseModel;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
@@ -53,6 +54,18 @@ public class ExpenseInfo extends BaseModel<ExpenseInfo> {
|
|
|
* 关联id
|
|
|
*/
|
|
|
private String relationId;
|
|
|
+ /**
|
|
|
+ * 备用金关联id
|
|
|
+ */
|
|
|
+ private String pettyRelationId;
|
|
|
+ /**
|
|
|
+ * 备用金支付账户
|
|
|
+ */
|
|
|
+ private String pettyName;
|
|
|
+ /**
|
|
|
+ * 是否显示
|
|
|
+ */
|
|
|
+ private String pettyShowFlag;
|
|
|
/**
|
|
|
* 加油id
|
|
|
*/
|
|
@@ -101,6 +114,10 @@ public class ExpenseInfo extends BaseModel<ExpenseInfo> {
|
|
|
* 备用金支付标识(1是)
|
|
|
*/
|
|
|
private String paymentIdentifi;
|
|
|
+ /**
|
|
|
+ * 无需付款标识(1是)
|
|
|
+ */
|
|
|
+ private String noPaymentFlag;
|
|
|
|
|
|
/**
|
|
|
* 费用分配方式(1按重量自动分配3指定金额分配)
|
|
@@ -372,6 +389,11 @@ public class ExpenseInfo extends BaseModel<ExpenseInfo> {
|
|
|
*/
|
|
|
@TableField(exist = false)
|
|
|
private List<ExpenseAllocationInfo> expenseAllocationInfoListBH;
|
|
|
+ /**
|
|
|
+ * 确认收款任务
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private List<NoticeTaskInfo> noticeTaskInfoList;
|
|
|
/**
|
|
|
* 发起人
|
|
|
*/
|
|
@@ -425,6 +447,11 @@ public class ExpenseInfo extends BaseModel<ExpenseInfo> {
|
|
|
*/
|
|
|
@TableField(exist = false)
|
|
|
private String operatorId;
|
|
|
+ /**
|
|
|
+ *标识
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String vesselId;
|
|
|
|
|
|
@Override
|
|
|
protected Serializable pkVal() {
|