using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SelfHelpClient.BO
|
|
{
|
|
public class WeightBill
|
|
{
|
|
public long ID { get; set; }
|
|
|
|
public string Supplier_Name { get; set; }
|
|
|
|
public string BankAccount { get; set; }
|
|
|
|
public string PurchaseType_Name { get; set; }
|
|
|
|
public DateTime WeighTime { get; set; }
|
|
|
|
public string Car_Name { get; set; }
|
|
|
|
public string Employee_Name { get; set; }
|
|
|
|
public decimal? JingJianFee { get; set; }
|
|
|
|
public decimal? DiscontMoney { get; set; }
|
|
|
|
public decimal? ShackWeight { get; set; }
|
|
|
|
public decimal? ShackPrice { get; set; }
|
|
|
|
public decimal? ShackMoney { get; set; }
|
|
|
|
public string AnimalTestMan { get; set; }
|
|
|
|
public string AnimalTestNumber { get; set; }
|
|
|
|
public DateTime? AnimalTestDate { get; set; }
|
|
|
|
public List<WeightBill_FarmerDetail> FarmerDetails { get; set; }
|
|
|
|
public List<WeightBill_WeightDetail> Details { get; set; }
|
|
}
|
|
}
|