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
20f18edf
Commit
20f18edf
authored
Nov 29, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
d1fff1db
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
150 additions
and
0 deletions
+150
-0
RB_Destination_ViewModel.cs
Edu.Model/ViewModel/System/RB_Destination_ViewModel.cs
+15
-0
DestinationModule.cs
Edu.Module.System/DestinationModule.cs
+91
-0
PublicController.cs
Edu.WebApi/Controllers/Public/PublicController.cs
+44
-0
No files found.
Edu.Model/ViewModel/System/RB_Destination_ViewModel.cs
View file @
20f18edf
...
...
@@ -15,16 +15,31 @@
/// </summary>
public
string
Ids
{
get
;
set
;
}
/// <summary>
/// 国家编号
/// </summary>
public
int
CountryId
{
get
;
set
;
}
/// <summary>
/// 国家名称
/// </summary>
public
string
CountryName
{
get
;
set
;
}
/// <summary>
/// 省份编号
/// </summary>
public
int
ProviceId
{
get
;
set
;
}
/// <summary>
/// 省份名称
/// </summary>
public
string
ProvinceName
{
get
;
set
;
}
/// <summary>
/// 城市编号
/// </summary>
public
int
CityId
{
get
;
set
;
}
/// <summary>
/// 城市名称
/// </summary>
...
...
Edu.Module.System/DestinationModule.cs
View file @
20f18edf
...
...
@@ -3,6 +3,7 @@ using Edu.Model.ViewModel.System;
using
Edu.Repository.System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
VT.FW.DB
;
namespace
Edu.Module.System
{
...
...
@@ -136,5 +137,95 @@ namespace Edu.Module.System
var
list
=
destinationRepository
.
GetDestinationListRepository
(
query
);
return
list
;
}
/// <summary>
/// 根据编号获取地区详情
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_Destination_ViewModel
GetDestinationModule
(
object
Id
)
{
var
model
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
Id
);
if
(
model
!=
null
&&
model
.
ID
>
0
)
{
RB_Destination_ViewModel
country
=
null
;
RB_Destination_ViewModel
provice
=
null
;
RB_Destination_ViewModel
city
=
null
;
switch
(
model
.
CodeLevel
)
{
//省份
case
2
:
country
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
model
.
ParentID
);
model
.
CountryName
=
country
?.
Name
;
model
.
CountryId
=
country
?.
ID
??
0
;
break
;
//市
case
3
:
provice
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
model
.
ParentID
);
model
.
ProvinceName
=
provice
?.
Name
;
model
.
ProviceId
=
provice
?.
ID
??
0
;
country
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
provice
?.
ParentID
);
model
.
CountryName
=
country
?.
Name
;
model
.
CountryId
=
country
?.
ID
??
0
;
break
;
//区
case
4
:
city
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
model
.
ParentID
);
model
.
CityName
=
city
?.
Name
;
model
.
CityId
=
city
?.
ID
??
0
;
provice
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
city
?.
ParentID
);
model
.
ProvinceName
=
provice
?.
Name
;
model
.
ProviceId
=
provice
?.
ID
??
0
;
country
=
destinationRepository
.
GetEntity
<
RB_Destination_ViewModel
>(
provice
?.
ParentID
);
model
.
CountryName
=
country
?.
Name
;
model
.
CountryId
=
country
?.
ID
??
0
;
break
;
}
}
return
model
;
}
/// <summary>
/// 新增修改地区
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetDestinationModule
(
RB_Destination_ViewModel
model
)
{
bool
flag
=
false
;
if
(
model
.
ID
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Destination_ViewModel
.
Name
),
model
.
Name
},
{
nameof
(
RB_Destination_ViewModel
.
ParentID
),
model
.
ParentID
},
{
nameof
(
RB_Destination_ViewModel
.
CodeLevel
),
model
.
CodeLevel
},
};
flag
=
destinationRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Destination_ViewModel
.
ID
),
model
.
ID
));
}
else
{
var
newId
=
destinationRepository
.
Insert
(
model
);
model
.
ID
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 删除地区数据
/// </summary>
/// <param name="ID"></param>
/// <returns></returns>
public
bool
RemoveAreaModule
(
int
ID
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Destination_ViewModel
.
Status
),(
int
)
Common
.
Enum
.
DateStateEnum
.
Delete
}
};
return
destinationRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Destination_ViewModel
.
ID
),
ID
));
}
}
}
\ No newline at end of file
Edu.WebApi/Controllers/Public/PublicController.cs
View file @
20f18edf
...
...
@@ -111,6 +111,50 @@ namespace Edu.WebApi.Controllers.Public
return
ApiResult
.
Success
(
data
:
list
);
}
/// <summary>
/// 新增修改地区
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetArea
()
{
RB_Destination_ViewModel
model
=
new
RB_Destination_ViewModel
()
{
ID
=
base
.
ParmJObj
.
GetInt
(
"ID"
),
Name
=
base
.
ParmJObj
.
GetStringValue
(
"Name"
),
ParentID
=
base
.
ParmJObj
.
GetInt
(
"ParentID"
),
CodeLevel
=
base
.
ParmJObj
.
GetInt
(
"CodeLevel"
),
};
model
.
Status
=
Common
.
Enum
.
DateStateEnum
.
Normal
;
bool
flag
=
destinationModule
.
SetDestinationModule
(
model
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
/// <summary>
/// 根据编号获取地区信息
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetAreaInfo
()
{
var
ID
=
base
.
ParmJObj
.
GetInt
(
"ID"
);
var
model
=
destinationModule
.
GetDestinationModule
(
ID
);
return
ApiResult
.
Success
(
data
:
model
);
}
/// <summary>
/// 删除地区数据
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
RemoveArea
()
{
var
ID
=
base
.
ParmJObj
.
GetInt
(
"ID"
);
bool
flag
=
destinationModule
.
RemoveAreaModule
(
ID
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
#
endregion
#
region
菜单管理
...
...
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