Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
63e04b17
Commit
63e04b17
authored
Nov 22, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实体类
parent
5ea55f63
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
248 additions
and
1 deletion
+248
-1
Edu.Cache.csproj.CopyComplete
...e/obj/Release/netcoreapp3.0/Edu.Cache.csproj.CopyComplete
+0
-0
CustomerStateEnum.cs
Edu.Common/Enum/Customer/CustomerStateEnum.cs
+35
-0
RB_Customer.cs
Edu.Model/Entity/Customer/RB_Customer.cs
+154
-0
RB_Customer_Extend.cs
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
+14
-0
CustomerModule.cs
Edu.Module.Customer/CustomerModule.cs
+16
-0
Edu.Module.Customer.csproj
Edu.Module.Customer/Edu.Module.Customer.csproj
+7
-0
Edu.Module.User.csproj.CopyComplete
...Release/netcoreapp3.0/Edu.Module.User.csproj.CopyComplete
+0
-0
RB_CustomerRepository.cs
Edu.Repository/Customer/RB_CustomerRepository.cs
+14
-0
Edu.Repository.csproj.CopyComplete
.../Release/netcoreapp3.0/Edu.Repository.csproj.CopyComplete
+0
-0
education.sln
education.sln
+8
-1
No files found.
Edu.Cache/obj/Release/netcoreapp3.0/Edu.Cache.csproj.CopyComplete
deleted
100644 → 0
View file @
5ea55f63
Edu.Common/Enum/Customer/CustomerStateEnum.cs
0 → 100644
View file @
63e04b17
using
Edu.Common.Plugin
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Common.Enum.Customer
{
/// <summary>
/// 客户状态
/// </summary>
public
enum
CustomerStateEnum
{
/// <summary>
/// 正常
/// </summary>
[
EnumField
(
"正常"
)]
Normal
=
1
,
/// <summary>
/// 禁用
/// </summary>
[
EnumField
(
"禁用"
)]
Disable
=
2
,
/// <summary>
/// 删除
/// </summary>
[
EnumField
(
"删除"
)]
Delete
=
3
,
/// <summary>
/// 未激活
/// </summary>
[
EnumField
(
"未激活"
)]
NotActivation
=
4
}
}
Edu.Model/Entity/Customer/RB_Customer.cs
0 → 100644
View file @
63e04b17
using
Edu.Common.Enum.Customer
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.Customer
{
/// <summary>
/// 同业客户管理实体类
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Customer
{
/// <summary>
/// 客户资料id
/// </summary>
public
int
CustomerId
{
get
;
set
;
}
/// <summary>
/// 客户名称
/// </summary>
public
string
CustomerName
{
get
;
set
;
}
/// <summary>
/// 联系人
/// </summary>
public
string
ContactMan
{
get
;
set
;
}
/// <summary>
/// 联系电话
/// </summary>
public
string
ContactNumber
{
get
;
set
;
}
/// <summary>
/// 传真
/// </summary>
public
string
Fax
{
get
;
set
;
}
/// <summary>
/// 业务QQ
/// </summary>
public
string
QQ
{
get
;
set
;
}
/// <summary>
/// 邮箱
/// </summary>
public
string
Email
{
get
;
set
;
}
/// <summary>
/// 客户地址
/// </summary>
public
string
Address
{
get
;
set
;
}
/// <summary>
/// 联系人性别 0 未知,1男, 2女
/// </summary>
public
int
Sex
{
get
;
set
;
}
/// <summary>
/// 图片
/// </summary>
public
string
Image
{
get
;
set
;
}
/// <summary>
/// 客户来源
/// </summary>
public
int
CustomerSourceType
{
get
;
set
;
}
/// <summary>
/// 客户来源信息
/// </summary>
public
string
CustomerSource
{
get
;
set
;
}
/// <summary>
/// 国家id
/// </summary>
public
int
CountryId
{
get
;
set
;
}
/// <summary>
/// 省id
/// </summary>
public
int
ProvinceId
{
get
;
set
;
}
/// <summary>
/// 市id
/// </summary>
public
int
CityId
{
get
;
set
;
}
/// <summary>
/// 区id
/// </summary>
public
int
DistrictId
{
get
;
set
;
}
/// <summary>
/// 经度纬度
/// </summary>
public
string
LngLat
{
get
;
set
;
}
/// <summary>
/// 同行幸福存折
/// </summary>
public
decimal
Client_Balance
{
get
;
set
;
}
/// <summary>
/// 账号
/// </summary>
public
string
Account
{
get
;
set
;
}
/// <summary>
/// 密码
/// </summary>
public
string
Password
{
get
;
set
;
}
/// <summary>
/// 备注
/// </summary>
public
string
Remark
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
Group_Id
{
get
;
set
;
}
/// <summary>
/// 校区编号
/// </summary>
public
int
School_Id
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 状态 0正常,1删除
/// </summary>
public
int
Status
{
get
;
set
;
}
/// <summary>
/// 修改时间
/// </summary>
public
DateTime
UpdateTime
{
get
;
set
;
}
/// <summary>
/// 账号状态
/// </summary>
public
CustomerStateEnum
CustomerState
{
get
;
set
;
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
0 → 100644
View file @
63e04b17
using
Edu.Model.Entity.Customer
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Model.ViewModel.Customer
{
/// <summary>
/// 同业客户信息扩展实体类
/// </summary>
public
class
RB_Customer_Extend
:
RB_Customer
{
}
}
Edu.Module.Customer/CustomerModule.cs
0 → 100644
View file @
63e04b17
using
Edu.Repository.Customer
;
using
System
;
namespace
Edu.Module.Customer
{
/// <summary>
/// 同业客户管理处理类
/// </summary>
public
class
CustomerModule
{
/// <summary>
/// 同业客户管理仓储层对象
/// </summary>
private
readonly
RB_CustomerRepository
customerRepository
=
new
RB_CustomerRepository
();
}
}
Edu.Module.Customer/Edu.Module.Customer.csproj
0 → 100644
View file @
63e04b17
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
</Project>
Edu.Module.User/obj/Release/netcoreapp3.0/Edu.Module.User.csproj.CopyComplete
deleted
100644 → 0
View file @
5ea55f63
Edu.Repository/Customer/RB_CustomerRepository.cs
0 → 100644
View file @
63e04b17
using
Edu.Model.Entity.Customer
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Repository.Customer
{
/// <summary>
/// 同业客户管理仓储层
/// </summary>
public
class
RB_CustomerRepository
:
BaseRepository
<
RB_Customer
>
{
}
}
Edu.Repository/obj/Release/netcoreapp3.0/Edu.Repository.csproj.CopyComplete
deleted
100644 → 0
View file @
5ea55f63
education.sln
View file @
63e04b17
...
@@ -68,7 +68,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.EduTask", "Edu.M
...
@@ -68,7 +68,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.EduTask", "Edu.M
EndProject
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.QYWeChat", "Edu.Module.QYWeChat\Edu.Module.QYWeChat.csproj", "{00E05F5A-A5B7-46ED-AE5F-9D54D67FA78F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.QYWeChat", "Edu.Module.QYWeChat\Edu.Module.QYWeChat.csproj", "{00E05F5A-A5B7-46ED-AE5F-9D54D67FA78F}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.Module.Exam", "Edu.Module.Exam\Edu.Module.Exam.csproj", "{81C24D63-1109-4476-99AB-590EF54972E5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Exam", "Edu.Module.Exam\Edu.Module.Exam.csproj", "{81C24D63-1109-4476-99AB-590EF54972E5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.Module.Customer", "Edu.Module.Customer\Edu.Module.Customer.csproj", "{11365608-C76C-4CF7-9DBE-78A61A934448}"
EndProject
EndProject
Global
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
@@ -172,6 +174,10 @@ Global
...
@@ -172,6 +174,10 @@ Global
{81C24D63-1109-4476-99AB-590EF54972E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81C24D63-1109-4476-99AB-590EF54972E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81C24D63-1109-4476-99AB-590EF54972E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81C24D63-1109-4476-99AB-590EF54972E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81C24D63-1109-4476-99AB-590EF54972E5}.Release|Any CPU.Build.0 = Release|Any CPU
{81C24D63-1109-4476-99AB-590EF54972E5}.Release|Any CPU.Build.0 = Release|Any CPU
{11365608-C76C-4CF7-9DBE-78A61A934448}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11365608-C76C-4CF7-9DBE-78A61A934448}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11365608-C76C-4CF7-9DBE-78A61A934448}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11365608-C76C-4CF7-9DBE-78A61A934448}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
HideSolutionNode = FALSE
...
@@ -199,6 +205,7 @@ Global
...
@@ -199,6 +205,7 @@ Global
{FEDB8D19-2C7E-4393-8D91-332256EC89CC} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{FEDB8D19-2C7E-4393-8D91-332256EC89CC} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{00E05F5A-A5B7-46ED-AE5F-9D54D67FA78F} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{00E05F5A-A5B7-46ED-AE5F-9D54D67FA78F} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{81C24D63-1109-4476-99AB-590EF54972E5} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{81C24D63-1109-4476-99AB-590EF54972E5} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{11365608-C76C-4CF7-9DBE-78A61A934448} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
EndGlobalSection
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8763B446-FAB1-46BF-9743-F2628533241B}
SolutionGuid = {8763B446-FAB1-46BF-9743-F2628533241B}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment