bingyu-duanxinwangzhan/message-code/message_api/application/index/model/Task.php

21 lines
364 B
PHP

<?php
/**
* Created by PhpStorm.
* User: lock
* Date: 2020/11/10
* Time: 6:21 PM
*/
namespace app\index\model;
class Task extends Common
{
const AUTO_ID = 'id';
const TITLE = 'title';
const USER_ID = 'user_id';
const TYPE = 'type';
const CONTENT = 'content';
const STATUS = 'status';
const SYS_CREATE_TIME = 'sys_create_time';
}