h-1.flet.3/flutter.参考/データモデルのテンプレ.md
2026-02-20 23:24:01 +09:00

8 lines
355 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 将来、Odooの account.move と紐付けるための最小構成
class InvoiceModel {
final String localUuid; // 端末で生成する唯一無二のID
final String? odooId; // Odooに書き込まれたら返ってくるID最初はnull
final DateTime createdAt; // 発行日
final List<Item> items; // 明細
// ...
}