feat: 第三阶段业务模块(服务产康/月嫂/进销存)
- 新增3个migration(15张表): service/nanny/inventory - 新增15个Model + 13个Controller - 新增55条API路由(总计212条) - 新增3个前端API模块 + 11个管理页面 - vite build验证通过
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace App\Models\Inventory;
|
||||
use App\Traits\BelongsToStore;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
class Material extends Model
|
||||
{
|
||||
use BelongsToStore;
|
||||
protected $fillable = ['store_id','name','code','category','unit','spec','min_stock','shelf_life_days','status'];
|
||||
protected function casts(): array { return ['min_stock'=>'integer','shelf_life_days'=>'integer','status'=>'integer']; }
|
||||
}
|
||||
Reference in New Issue
Block a user