增加用户沟通

This commit is contained in:
2025-07-02 17:36:30 +08:00
parent e45dce9a01
commit 7937db5733
6 changed files with 393 additions and 145 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
/**
* @copyright Copyright (c) 2023-2025 美天智能科技
* @author 李志强
* @link http://www.meteteme.com
*/
namespace app\model;
use think\Model;
use think\facade\Db;
class WorkOrderMessage extends Model
{
// 指定表名
protected $name = 'work_order_message';
protected $autoWriteTimestamp = false;
}