using Forks.EnterpriseServices.DomainObjects2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BO.BO.Bill
|
|
{
|
|
[MapToTable("WeightData")]
|
|
public class WeightData
|
|
{
|
|
public decimal Weight { get; set; }
|
|
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|