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

37 lines
734 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BO.BO
{
public class WeightBillList
{
public long ID { get; set; }
public long? B3ID { get; set; }
public string Car_Name { get; set; }
public string Supplier_Name { get; set; }
public string Employee_Name { get; set; }
public string PurchaseType_Name { get; set; }
public int? Number { get; set; }
public decimal? Weight { get; set; }
public string HouseNames { get; set; }
public decimal? SanctionMoney { get; set; }
public string Remark { get; set; }
public bool FinishWeight { get; set; }
public int PrintNumber { get; set; }
}
}