Files

6 lines
163 B
C#
Raw Permalink Normal View History

2026-03-02 18:50:30 +08:00
public interface IStationViewModel
{
int StationId { get; set; }
void SaveToDatabase();
void LoadFromDatabase(int recordId); // 加载指定记录
}