// SPDX-FileCopyrightText: 2025-2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT
useentity_derive::Entity;/// Entity without #[id] field should fail.
#[derive(Entity)]#[entity(table ="items")]pubstructItem{pubname: String,
pubvalue:i32,
}fnmain(){}