18 lines
538 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImAsdu140FltCurrInfo
{
public string CompanyName { get; set; } = null!;
public int CurrIndCode { get; set; }
public string CurrName { get; set; } = null!;
public string? Unit { get; set; }
public int Precise { get; set; }
public double Coeff { get; set; }
public virtual ImManufacturer CompanyNameNavigation { get; set; } = null!;
}
}