屠宰场管理服务
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.

31 lines
658 B

using BWP.B3Frameworks.BO;
using Forks.EnterpriseServices.DomainObjects2;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BWP.B3ClientService.BO
{
public class GradeAndWeight_Detail : Base
{
public int Index { get; set; }
[NonDmoProperty]
public long OrderDetail_ID { get; set; }
public DateTime? Date { get; set; }
public short Technics { get; set; }
public string Technics_Name { get; set; }
public long Livestock_ID { get; set; }
public string Livestock_Name { get; set; }
public decimal? Weight { get; set; }
public DateTime Time { get; set; }
}
}