using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SelfHelpClient.BO
|
|
{
|
|
public class WeightBill_FarmerDetail
|
|
{
|
|
public int Index { get; set; }
|
|
|
|
public string Farmer_Name { get; set; }
|
|
|
|
public int? Number { get; set; }
|
|
|
|
public decimal? Weight { get; set; }
|
|
|
|
public decimal? Money { get; set; }
|
|
|
|
public string Farmer_IDCard { get; set; }
|
|
|
|
public string Farmer_BankAccount { get; set; }
|
|
|
|
public string Farmer_Tel { get; set; }
|
|
|
|
public string Farmer_Address { get; set; }
|
|
|
|
public string PigFarmName { get; set; }
|
|
}
|
|
}
|