From 21efbfa4802b559b94a1dc5d989863522f8738f6 Mon Sep 17 00:00:00 2001 From: Jimmy <584481786@qq.com> Date: Thu, 15 Jul 2021 00:05:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Client/ClientAppService.cs | 10 ++ .../Client/IClientAppService.cs | 10 ++ .../MineTec.ProManager.Application.csproj | 3 + .../Entitys/Client/Client.cs | 154 ++++++++++++++++++ 4 files changed, 177 insertions(+) create mode 100644 Code/src/MineTec.ProManager.Application/Client/ClientAppService.cs create mode 100644 Code/src/MineTec.ProManager.Application/Client/IClientAppService.cs create mode 100644 Code/src/MineTec.ProManager.Core/Entitys/Client/Client.cs diff --git a/Code/src/MineTec.ProManager.Application/Client/ClientAppService.cs b/Code/src/MineTec.ProManager.Application/Client/ClientAppService.cs new file mode 100644 index 0000000..ec02806 --- /dev/null +++ b/Code/src/MineTec.ProManager.Application/Client/ClientAppService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace MineTec.ProManager.Client +{ + class ClientAppService + { + } +} diff --git a/Code/src/MineTec.ProManager.Application/Client/IClientAppService.cs b/Code/src/MineTec.ProManager.Application/Client/IClientAppService.cs new file mode 100644 index 0000000..c213a23 --- /dev/null +++ b/Code/src/MineTec.ProManager.Application/Client/IClientAppService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace MineTec.ProManager.Client +{ + class IClientAppService + { + } +} diff --git a/Code/src/MineTec.ProManager.Application/MineTec.ProManager.Application.csproj b/Code/src/MineTec.ProManager.Application/MineTec.ProManager.Application.csproj index c7c927a..a8f0647 100644 --- a/Code/src/MineTec.ProManager.Application/MineTec.ProManager.Application.csproj +++ b/Code/src/MineTec.ProManager.Application/MineTec.ProManager.Application.csproj @@ -13,4 +13,7 @@ + + + \ No newline at end of file diff --git a/Code/src/MineTec.ProManager.Core/Entitys/Client/Client.cs b/Code/src/MineTec.ProManager.Core/Entitys/Client/Client.cs new file mode 100644 index 0000000..762ba91 --- /dev/null +++ b/Code/src/MineTec.ProManager.Core/Entitys/Client/Client.cs @@ -0,0 +1,154 @@ +using Abp.Domain.Entities; +using Abp.Domain.Entities.Auditing; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Text; + +namespace MineTec.ProManager.Entitys.Client +{ + [System.ComponentModel.DataAnnotations.Schema.Table("Client")] + public class Client : Entity, IHasCreationTime + { + /// + /// 创建日期 + /// + public DateTime? CreateTime { get; set; } + + /// + /// 创建人ID + /// + [StringLength(50)] + public string CreateUserID { get; set; } + + /// + /// 创建人姓名 + /// + [StringLength(50)] + public string CreateUserName { get; set; } + + /// + /// 修改日期 + /// + public DateTime? UpdateTime { get; set; } + + /// + /// 修改人ID + /// + [StringLength(50)] + public string UpdateUserID { get; set; } + + /// + /// 修改人名称 + /// + [StringLength(50)] + public string UpdateUserName { get; set; } + + /// + /// 供应商代号 + /// + [StringLength(50)] + public string SupplierCode { get; set; } + + /// + /// 供应商名称 + /// + [StringLength(100)] + public string SupplierName { get; set; } + + /// + /// 主营业务 + /// + [StringLength(100)] + public string Mainbusiness { get; set; } + + /// + /// 联系人 + /// + [StringLength(50)] + public string Contacts { get; set; } + + /// + ///供应货物/服务 + /// + [StringLength(100)] + public string Supplygoods_services { get; set; } + + /// + ///价格(老) + /// + public decimal Price_old { get; set; } + + /// + ///最新价格 + /// + public decimal Price { get; set; } + + /// + ///移动电话 + /// + [StringLength(100)] + public string Mobilephone { get; set; } + + /// + ///固定电话 + /// + [StringLength(100)] + public string Fixedtelephone { get; set; } + + /// + ///邮箱 + /// + [StringLength(100)] + public string Email { get; set; } + + /// + ///地址 + /// + [StringLength(100)] + public string Address { get; set; } + + /// + ///网站 + /// + [StringLength(100)] + public string Website { get; set; } + + /// + /// 社会统一信用代码 + /// + [StringLength(100)] + public string CreditCode { get; set; } + + /// + /// 开户银行 + /// + [StringLength(100)] + public string Bank { get; set; } + + /// + /// 账号 + /// + [StringLength(100)] + public string BankAccount { get; set; } + + /// + /// 传真 + /// + [StringLength(100)] + public string Fax { get; set; } + + /// + /// 备注 + /// + [StringLength(300)] + public string Remark { get; set; } + + /// + ///是否删除:0 否, 1 是 + /// + public int IsDelete { get; set; } + + public DateTime CreationTime { get; set; } + } +}