From 5b83b50d38c757b38dcc87a40a17d34cc2948e10 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期五, 15 三月 2024 09:49:15 +0800
Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0

---
 cloud-server-management/src/main/java/com/dsh/course/entity/SystemPrice.java |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/cloud-server-management/src/main/java/com/dsh/course/entity/SystemPrice.java b/cloud-server-management/src/main/java/com/dsh/course/entity/SystemPrice.java
new file mode 100644
index 0000000..b63acec
--- /dev/null
+++ b/cloud-server-management/src/main/java/com/dsh/course/entity/SystemPrice.java
@@ -0,0 +1,47 @@
+package com.dsh.course.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+
+/**
+ * 服务价格规则
+ */
+@Data
+@TableName("t_system_price")
+public class SystemPrice {
+    /**
+     * 主键
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    @TableField("id")
+    private Integer id;
+    /**
+     * 业务类型(1=专车,4=小件物流-同城)
+     Business types: (1=private car, 4=courier-same city)
+     */
+    @TableField("type")
+    private Integer type;
+    /**
+     * 企业id
+     */
+    @TableField("companyId")
+    private Integer companyId;
+    /**
+     * 服务车型设置
+     */
+    @TableField("serverCarModelId")
+    private Integer serverCarModelId;
+    /**
+     * 价格规则,每个输入框为一个参数{"num1":1,"num2":2.3}
+     */
+    @TableField("content")
+    private String content;
+
+    @TableField("orderType")
+    private Integer orderType;
+    @TableField("cityId")
+    private Integer cityId;
+}

--
Gitblit v1.7.1