屠宰场管理服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

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; }
}
}