18 lines
348 B
C#
18 lines
348 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Agents.Models;
|
|||
|
|
|||
|
public partial class Materialcounthistory
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int Materialid { get; set; }
|
|||
|
|
|||
|
public DateTime Changedate { get; set; }
|
|||
|
|
|||
|
public double Countvalue { get; set; }
|
|||
|
|
|||
|
public virtual Material Material { get; set; } = null!;
|
|||
|
}
|