屠宰场客户端
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.

63 lines
1.3 KiB

using Forks.EnterpriseServices.DomainObjects2;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ButcherManage.BO
{
[Serializable]
[MapToTable("GradeAndWeight_Detail")]
[KeyField("SID", KeyGenType.identity)]
public class GradeAndWeight_Detail
{
/// <summary>
/// 本地ID
/// </summary>
public long SID { get; set; }
public long? OrderDetail_ID { get; set; }
public int? Order { get; set; }
public int Index { get; set; }
public int? OrderIndex { 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; }
[DbColumn(DbType = SqlDbType.DateTime)]
public DateTime Time { get; set; }
/// <summary>
/// ServerID
/// </summary>
public long ID { get; set; }
public bool Sync { get; set; }
/// <summary>
/// 是否删除的
/// </summary>
public bool IsDeleted { get; set; }
//掉猪
public bool IsDrop { get; set; }
public string BarCode { get; set; }
public long? ProductBatch_ID { get; set; }
}
}