using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace WebAPI.Models
|
{
|
public class Supplier
|
{
|
public long HInterID { get; set; }
|
public long HItemID { get; set; }
|
public string HNumber { get; set; }
|
public string HShortNumber { get; set; }
|
public string HName { get; set; }
|
|
public long HParentID { get; set; }
|
|
public long HLevel { get; set; }
|
|
public string HEnfFlag { get; set; }
|
|
public string HRemark { get; set; }
|
|
public string HStopflag { get; set; }
|
|
public string HHelpCode { get; set; }
|
|
public string HShortName { get; set; }
|
|
public string HAddress { get; set; }
|
|
public string HLinkMan { get; set; }
|
|
public string HLinkPhone { get; set; }
|
|
public string HMobilePhone { get; set; }
|
|
public string HFax { get; set; }
|
|
public string HPostalCode { get; set; }
|
|
public string HEmail { get; set; }
|
|
public string HBank { get; set; }
|
|
public string HBankAccount { get; set; }
|
|
public string HCorMan { get; set; }
|
|
public string HTaxNum { get; set; }
|
|
public double HTaxRate { get; set; }
|
|
public string HCountry { get; set; }
|
|
public string HEnglishName { get; set; }
|
|
public string HEnglishAddress { get; set; }
|
|
public long HCurID { get; set; }
|
|
public long HSSID { get; set; }
|
|
public long HAreaID { get; set; }
|
|
public string HUseFlag { get; set; }
|
|
public long HERPItemID { get; set; }
|
|
public DateTime HMakeTime { get; set; }
|
|
public long HCreateOrgID { get; set; }
|
|
public long HUseOrgID { get; set; }
|
|
|
}
|
}
|