using BWP.B3ClientService.NamedValueTemplate;
|
|
using Forks.EnterpriseServices.DomainObjects2;
|
|
using Forks.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3ClientService.BO
|
|
{
|
|
[Serializable]
|
|
[BOClass]
|
|
[KeyField("GradeAndWeight_ID", KeyGenType.assigned)]
|
|
public class CarcassStateWeight
|
|
{
|
|
public long GradeAndWeight_ID { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public decimal? State1Weight { get; set; }
|
|
public DateTime? State1WeightTime { get; set; }
|
|
|
|
public decimal? State2Weight { get; set; }
|
|
public DateTime? State2WeightTime { get; set; }
|
|
|
|
public decimal? State3Weight { get; set; }
|
|
public DateTime? State3WeightTime { get; set; }
|
|
|
|
public decimal? State4Weight { get; set; }
|
|
public DateTime? State4WeightTime { get; set; }
|
|
|
|
public decimal? State5Weight { get; set; }
|
|
public DateTime? State5WeightTime { get; set; }
|
|
|
|
public NamedValue<胴体状态> CurrentState { get; set; }
|
|
|
|
public decimal? CurrentWeight { get; set; }
|
|
}
|
|
}
|