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
365af559
Commit
365af559
authored
4 years ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
fe93fa58
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
85 additions
and
5 deletions
+85
-5
.gitignore
.gitignore
+8
-0
RB_Group.cs
Edu.Model/Entity/User/RB_Group.cs
+58
-2
RB_School.cs
Edu.Model/Entity/User/RB_School.cs
+19
-3
No files found.
.gitignore
0 → 100644
View file @
365af559
bin/
obj/
.vs/
packages/
Edu.WebApi/log/
Edu.WebApi/Properties
Edu.WebApi/SearchIndex
/Properties
This diff is collapsed.
Click to expand it.
Edu.Model/Entity/User/RB_Group.cs
View file @
365af559
using
System
;
using
Edu.Common.Enum
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.User
...
...
@@ -20,9 +21,64 @@ namespace Edu.Model.Entity.User
/// </summary>
public
string
GroupName
{
get
;
set
;
}
/// <summary>
/// 域名
/// </summary>
public
string
Domain
{
get
;
set
;
}
/// <summary>
/// 联系人
/// </summary>
public
string
LinkMan
{
get
;
set
;
}
/// <summary>
/// 联系电话
/// </summary>
public
string
MobilePhone
{
get
;
set
;
}
/// <summary>
/// 座机
/// </summary>
public
string
Tel
{
get
;
set
;
}
/// <summary>
/// 地址
/// </summary>
public
string
Address
{
get
;
set
;
}
/// <summary>
/// 备注
/// </summary>
public
string
Remarks
{
get
;
set
;
}
/// <summary>
/// 集团logo图片
/// </summary>
public
string
Logo
{
get
;
set
;
}
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public
int
?
Status
{
get
;
set
;
}
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 更新人
/// </summary>
public
int
UpdateBy
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
UpdateTime
{
get
;
set
;
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Edu.Model/Entity/User/RB_School.cs
View file @
365af559
using
System
;
using
Edu.Common.Enum
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.User
...
...
@@ -35,14 +36,29 @@ namespace Edu.Model.Entity.User
/// </summary>
public
string
SLinkTel
{
get
;
set
;
}
/// <summary>
/// 学校域名
/// </summary>
public
string
SDomain
{
get
;
set
;
}
/// <summary>
/// 学校Logo
/// </summary>
public
string
SLogo
{
get
;
set
;
}
/// <summary>
///备注
/// </summary>
public
string
Remark
{
get
;
set
;
}
/// <summary>
/// 删除状态(0-正常,1-删除)
/// </summary>
public
int
?
Status
{
get
;
set
;
}
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
?
Group_Id
{
get
;
set
;
}
public
int
Group_Id
{
get
;
set
;
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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