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
636 B

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; }
}
}