53 lines
1.5 KiB
C#

using System;
namespace MineTec.ProManager.Supplier.Dto
{
public class UpdateSupplier
{
public Guid id { get; set; } //主键
public string UpdateUserID { get; set; }//更新用户ID
public string UpdateUserName { get; set; }//更新用户姓名
public string SupplierCode { get; set; }//更新供应商代号
public string SupplierName { get; set; }//更新供应商名称
public string Mainbusiness { get; set; }//更新主营业务
public string Contacts { get; set; }//更新联系人
public string Supplygoods_services { get; set; }//更新货物供应/服务
public decimal Price_old { get; set; }//更新价格(旧)
public decimal Price { get; set; }//更新最新价格
public string Mobilephone { get; set; }//更新移动电话
public string Fixedtelephone { get; set; }//更新固定电话
public string Email { get; set; }//更新邮箱
public string Address { get; set; }//更新地址
public string Website { get; set; }//更新网站
/// 社会统一信用代码
public string CreditCode { get; set; }
/// 开户银行
public string Bank { get; set; }
/// 账号
public string BankAccount { get; set; }
/// 传真
public string Fax { get; set; }
public string Remark { get; set; } //备注
public int IsDelete { get; set; }//是否删除
}
}