Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
Compass
Overview
Overview
Details
Activity
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
zong
Compass
Commits
66b2110c
Commit
66b2110c
authored
Feb 23, 2020
by
biao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a1b7d04e
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
34 additions
and
31 deletions
+34
-31
compass_db_schema.xlsx
doc/DB/compass_db_schema.xlsx
+0
-0
AccountMst.inc
src/cn/compass/entity/AccountMst.inc
+2
-2
CertificateMst.inc
src/cn/compass/entity/CertificateMst.inc
+1
-1
CircleDat.inc
src/cn/compass/entity/CircleDat.inc
+1
-1
CircleMemberDat.inc
src/cn/compass/entity/CircleMemberDat.inc
+1
-4
ClassMst.inc
src/cn/compass/entity/ClassMst.inc
+1
-1
CourseCategoryDat.inc
src/cn/compass/entity/CourseCategoryDat.inc
+1
-1
CourseMediaDat.inc
src/cn/compass/entity/CourseMediaDat.inc
+2
-2
CourseMst.inc
src/cn/compass/entity/CourseMst.inc
+3
-3
FamilyEventMemberDat.inc
src/cn/compass/entity/FamilyEventMemberDat.inc
+1
-1
GovernmentMst.inc
src/cn/compass/entity/GovernmentMst.inc
+1
-1
GovernmentQrDat.inc
src/cn/compass/entity/GovernmentQrDat.inc
+1
-1
GradeMst.inc
src/cn/compass/entity/GradeMst.inc
+1
-1
MediaTagDat.inc
src/cn/compass/entity/MediaTagDat.inc
+1
-1
SchoolMst.inc
src/cn/compass/entity/SchoolMst.inc
+1
-1
SocialEventMemberDat.inc
src/cn/compass/entity/SocialEventMemberDat.inc
+1
-1
SystemConstantDat.inc
src/cn/compass/entity/SystemConstantDat.inc
+1
-1
UserCertificateDat.inc
src/cn/compass/entity/UserCertificateDat.inc
+1
-1
UserMediaDat.inc
src/cn/compass/entity/UserMediaDat.inc
+1
-1
UserMessageDat.inc
src/cn/compass/entity/UserMessageDat.inc
+1
-1
UserMst.inc
src/cn/compass/entity/UserMst.inc
+2
-2
UserPointLog.inc
src/cn/compass/entity/UserPointLog.inc
+1
-1
VolunteerEventDat.inc
src/cn/compass/entity/VolunteerEventDat.inc
+7
-1
VolunteerEventMemberDat.inc
src/cn/compass/entity/VolunteerEventMemberDat.inc
+1
-1
No files found.
doc/DB/compass_db_schema.xlsx
View file @
66b2110c
No preview for this file type
src/cn/compass/entity/AccountMst.inc
View file @
66b2110c
<?php
/**
* AccountMst Entity
* $Id: AccountMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author
zb
* $Id: AccountMst.inc,v 1.1 2020/2/
13 10:54:23
Exp $
* @author
lixq
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CertificateMst.inc
View file @
66b2110c
<?php
/**
* CertificateMst Entity
* $Id: CertificateMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CertificateMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/CircleDat.inc
View file @
66b2110c
<?php
/**
* CircleDat Entity
* $Id: CircleDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CircleDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/CircleMemberDat.inc
View file @
66b2110c
<?php
/**
* CircleMemberDat Entity
* $Id: CircleMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CircleMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
@@ -10,7 +10,6 @@ class CircleMemberDat extends CompassDynamicData
{
var
$circle_id
;
var
$user_id
;
var
$name
;
var
$delete_flg
;
/**
...
...
@@ -25,7 +24,6 @@ class CircleMemberDat extends CompassDynamicData
$this
->
circle_id
=
$record
[
"circle_id"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
name
=
$record
[
"name"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
}
...
...
@@ -92,7 +90,6 @@ class CircleMemberDat extends CompassDynamicData
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"circle_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"name"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
// 保存
...
...
src/cn/compass/entity/ClassMst.inc
View file @
66b2110c
<?php
/**
* ClassMst Entity
* $Id: ClassMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: ClassMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/CourseCategoryDat.inc
View file @
66b2110c
<?php
/**
* CourseCategoryDat Entity
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/CourseMediaDat.inc
View file @
66b2110c
<?php
/**
* CourseMediaDat Entity
* $Id: CourseMediaDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CourseMediaDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
@@ -35,7 +35,7 @@ class CourseMediaDat extends CompassDynamicData
$this
->
tags
=
$record
[
"tags"
];
$this
->
front_image
=
$record
[
"front_image"
];
$this
->
media
=
$record
[
"media"
];
$this
->
size
=
$record
[
"size"
];
$this
->
size
=
$record
[
"size"
];
$this
->
teacher
=
$record
[
"teacher"
];
$this
->
is_free
=
$record
[
"is_free"
];
$this
->
price
=
$record
[
"price"
];
...
...
src/cn/compass/entity/CourseMst.inc
View file @
66b2110c
<?php
/**
* CourseMst Entity
* $Id: CourseMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: CourseMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
@@ -31,9 +31,9 @@ class CourseMst extends CompassDynamicData
$this
->
sub_category_id
=
$record
[
"sub_category_id"
];
$this
->
title
=
$record
[
"title"
];
$this
->
front_image
=
$record
[
"front_image"
];
$this
->
teacher_name
=
$record
[
"teacher_name"
];
$this
->
teacher_name
=
$record
[
"teacher_name"
];
$this
->
teacher_profile
=
$record
[
"teacher_profile"
];
$this
->
media_count
=
$record
[
"media_count"
];
$this
->
media_count
=
$record
[
"media_count"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
}
...
...
src/cn/compass/entity/FamilyEventMemberDat.inc
View file @
66b2110c
<?php
/**
* FamilyEventMemberDat Entity
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/GovernmentMst.inc
View file @
66b2110c
<?php
/**
* GovernmentMst Entity
* $Id: GovernmentMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: GovernmentMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/GovernmentQrDat.inc
View file @
66b2110c
<?php
/**
* GovernmentQrDat Entity
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/GradeMst.inc
View file @
66b2110c
<?php
/**
* GradeMst Entity
* $Id: GradeMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: GradeMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/MediaTagDat.inc
View file @
66b2110c
<?php
/**
* MediaTagDat Entity
* $Id: MediaTagDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: MediaTagDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/SchoolMst.inc
View file @
66b2110c
<?php
/**
* SchoolMst Entity
* $Id: SchoolMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: SchoolMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/SocialEventMemberDat.inc
View file @
66b2110c
<?php
/**
* SocialEventMemberDat Entity
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/SystemConstantDat.inc
View file @
66b2110c
<?php
/**
* SystemConstantDat Entity
* $Id: SystemConstantDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: SystemConstantDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/UserCertificateDat.inc
View file @
66b2110c
<?php
/**
* UserCertificateDat Entity
* $Id: UserCertificateDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: UserCertificateDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/UserMediaDat.inc
View file @
66b2110c
<?php
/**
* UserMediaDat Entity
* $Id: UserMediaDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: UserMediaDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/UserMessageDat.inc
View file @
66b2110c
<?php
/**
* UserMessageDat Entity
* $Id: UserMessageDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: UserMessageDat.inc,v 1.1 2020/2/
17 17:20:32
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/UserMst.inc
View file @
66b2110c
<?php
/**
* UserMst Entity
* $Id: UserMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: UserMst.inc,v 1.1 2020/2/
18 20:07:42
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
@@ -66,7 +66,7 @@ class UserMst extends CompassDynamicData
$this
->
latitude
=
$record
[
"latitude"
];
$this
->
government_id
=
$record
[
"government_id"
];
$this
->
province
=
$record
[
"province"
];
$this
->
city
=
$record
[
"city"
];
$this
->
city
=
$record
[
"city"
];
$this
->
district
=
$record
[
"district"
];
$this
->
organization_submit_date
=
$record
[
"organization_submit_date"
];
$this
->
organization_no
=
$record
[
"organization_no"
];
...
...
src/cn/compass/entity/UserPointLog.inc
View file @
66b2110c
<?php
/**
* UserPointLog Entity
* $Id: UserPointLog.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* $Id: UserPointLog.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
src/cn/compass/entity/VolunteerEventDat.inc
View file @
66b2110c
<?php
/**
* VolunteerEventDat Entity
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/2
2 11:26:51
Exp $
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/2
3 11:34:26
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
@@ -11,11 +11,13 @@ class VolunteerEventDat extends CompassDynamicData
var
$title
;
var
$start_time
;
var
$finish_time
;
var
$front_image
;
var
$position
;
var
$position_longitude
;
var
$position_latitude
;
var
$author
;
var
$author_role
;
var
$account_id
;
var
$school_no
;
var
$original_source
;
var
$province
;
...
...
@@ -43,11 +45,13 @@ class VolunteerEventDat extends CompassDynamicData
$this
->
title
=
$record
[
"title"
];
$this
->
start_time
=
$record
[
"start_time"
];
$this
->
finish_time
=
$record
[
"finish_time"
];
$this
->
front_image
=
$record
[
"front_image"
];
$this
->
position
=
$record
[
"position"
];
$this
->
position_longitude
=
$record
[
"position_longitude"
];
$this
->
position_latitude
=
$record
[
"position_latitude"
];
$this
->
author
=
$record
[
"author"
];
$this
->
author_role
=
$record
[
"author_role"
];
$this
->
account_id
=
$record
[
"account_id"
];
$this
->
school_no
=
$record
[
"school_no"
];
$this
->
original_source
=
$record
[
"original_source"
];
$this
->
province
=
$record
[
"province"
];
...
...
@@ -127,11 +131,13 @@ class VolunteerEventDat extends CompassDynamicData
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"title"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"start_time"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"finish_time"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"front_image"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_latitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"author"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"author_role"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"account_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"school_no"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"original_source"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"province"
);
...
...
src/cn/compass/entity/VolunteerEventMemberDat.inc
View file @
66b2110c
<?php
/**
* VolunteerEventMemberDat Entity
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/22 1
1:26:51
Exp $
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/22 1
7:45:56
Exp $
* @author zb
* @package jp.compass.entity
* @access public
...
...
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