コンテンツにスキップ

ShuushokugoMaster

修飾語マスターの 1 件を表すモデル。傷病名に付ける「疑い」「急性」などの修飾語の名称を持ちます。データベースの shuushokugo_master テーブルに対応します。

定義: src/lib/models/shuushokugo-master.ts

フィールド

フィールド 説明
shuushokugocode number 修飾語コード
name string 修飾語の名称

型定義

import { z } from "zod";

export const shuushokugoMasterSchema = z.object({
  shuushokugocode: z.number(),
  name: z.string()
});

export type ShuushokugoMaster = z.infer<typeof shuushokugoMasterSchema>;