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
0e1222b8
Commit
0e1222b8
authored
Feb 14, 2020
by
biao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
68b56ab5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
51 additions
and
51 deletions
+51
-51
compass_db_schema.sql
doc/DB/compass_db_schema.sql
+0
-0
compass_db_schema.xlsx
doc/DB/compass_db_schema.xlsx
+0
-0
接口文档 V1.0.xls
doc/接口文档 V1.0.xls
+0
-0
CertificateMst.inc
src/cn/compass/entity/CertificateMst.inc
+2
-2
CircleDat.inc
src/cn/compass/entity/CircleDat.inc
+2
-2
CircleMemberDat.inc
src/cn/compass/entity/CircleMemberDat.inc
+2
-5
ClassMst.inc
src/cn/compass/entity/ClassMst.inc
+2
-2
CourseCategoryDat.inc
src/cn/compass/entity/CourseCategoryDat.inc
+2
-2
CourseMediaDat.inc
src/cn/compass/entity/CourseMediaDat.inc
+2
-2
CourseMst.inc
src/cn/compass/entity/CourseMst.inc
+2
-2
FamilyEventDat.inc
src/cn/compass/entity/FamilyEventDat.inc
+2
-2
FamilyEventMemberDat.inc
src/cn/compass/entity/FamilyEventMemberDat.inc
+2
-2
GovernmentMst.inc
src/cn/compass/entity/GovernmentMst.inc
+2
-2
GovernmentQrDat.inc
src/cn/compass/entity/GovernmentQrDat.inc
+2
-2
GradeMst.inc
src/cn/compass/entity/GradeMst.inc
+2
-2
MediaTagDat.inc
src/cn/compass/entity/MediaTagDat.inc
+2
-2
SchoolMst.inc
src/cn/compass/entity/SchoolMst.inc
+2
-2
SocialEventDat.inc
src/cn/compass/entity/SocialEventDat.inc
+2
-2
SocialEventMemberDat.inc
src/cn/compass/entity/SocialEventMemberDat.inc
+2
-2
SystemConstantDat.inc
src/cn/compass/entity/SystemConstantDat.inc
+2
-2
UserCertificateDat.inc
src/cn/compass/entity/UserCertificateDat.inc
+2
-2
UserMediaDat.inc
src/cn/compass/entity/UserMediaDat.inc
+5
-2
UserMst.inc
src/cn/compass/entity/UserMst.inc
+4
-4
UserPointLog.inc
src/cn/compass/entity/UserPointLog.inc
+2
-2
VolunteerEventDat.inc
src/cn/compass/entity/VolunteerEventDat.inc
+2
-2
VolunteerEventMemberDat.inc
src/cn/compass/entity/VolunteerEventMemberDat.inc
+2
-2
No files found.
doc/DB/compass_db_schema.sql
deleted
100644 → 0
View file @
68b56ab5
This diff is collapsed.
Click to expand it.
doc/DB/compass_db_schema.xlsx
View file @
0e1222b8
No preview for this file type
doc/接口文档 V1.0.xls
View file @
0e1222b8
No preview for this file type
src/cn/compass/entity/CertificateMst.inc
View file @
0e1222b8
<?php
/**
* CertificateMst Entity
* $Id: CertificateMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CertificateMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CircleDat.inc
View file @
0e1222b8
<?php
/**
* CircleDat Entity
* $Id: CircleDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CircleDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CircleMemberDat.inc
View file @
0e1222b8
<?php
/**
* CircleMemberDat Entity
* $Id: CircleMemberDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CircleMemberDat.inc,v 1.1 2020/2/1
4 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
$member_count
;
var
$delete_flg
;
/**
...
...
@@ -25,7 +24,6 @@ class CircleMemberDat extends CompassDynamicData
$this
->
circle_id
=
$record
[
"circle_id"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
member_count
=
$record
[
"member_count"
];
$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
::
copyObj2Array
(
$v_param
,
$this
,
"member_count"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
// 保存
...
...
src/cn/compass/entity/ClassMst.inc
View file @
0e1222b8
<?php
/**
* ClassMst Entity
* $Id: ClassMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: ClassMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CourseCategoryDat.inc
View file @
0e1222b8
<?php
/**
* CourseCategoryDat Entity
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CourseMediaDat.inc
View file @
0e1222b8
<?php
/**
* CourseMediaDat Entity
* $Id: CourseMediaDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CourseMediaDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/CourseMst.inc
View file @
0e1222b8
<?php
/**
* CourseMst Entity
* $Id: CourseMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: CourseMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/FamilyEventDat.inc
View file @
0e1222b8
<?php
/**
* FamilyEventDat Entity
* $Id: FamilyEventDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: FamilyEventDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/FamilyEventMemberDat.inc
View file @
0e1222b8
<?php
/**
* FamilyEventMemberDat Entity
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/GovernmentMst.inc
View file @
0e1222b8
<?php
/**
* GovernmentMst Entity
* $Id: GovernmentMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: GovernmentMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/GovernmentQrDat.inc
View file @
0e1222b8
<?php
/**
* GovernmentQrDat Entity
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/GradeMst.inc
View file @
0e1222b8
<?php
/**
* GradeMst Entity
* $Id: GradeMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: GradeMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/MediaTagDat.inc
View file @
0e1222b8
<?php
/**
* MediaTagDat Entity
* $Id: MediaTagDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: MediaTagDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/SchoolMst.inc
View file @
0e1222b8
<?php
/**
* SchoolMst Entity
* $Id: SchoolMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: SchoolMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/SocialEventDat.inc
View file @
0e1222b8
<?php
/**
* SocialEventDat Entity
* $Id: SocialEventDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: SocialEventDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/SocialEventMemberDat.inc
View file @
0e1222b8
<?php
/**
* SocialEventMemberDat Entity
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/SystemConstantDat.inc
View file @
0e1222b8
<?php
/**
* SystemConstantDat Entity
* $Id: SystemConstantDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: SystemConstantDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/UserCertificateDat.inc
View file @
0e1222b8
<?php
/**
* UserCertificateDat Entity
* $Id: UserCertificateDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: UserCertificateDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/UserMediaDat.inc
View file @
0e1222b8
<?php
/**
* UserMediaDat Entity
* $Id: UserMediaDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: UserMediaDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
class
UserMediaDat
extends
CompassDynamicData
{
var
$user_id
;
var
$course_id
;
var
$media_id
;
var
$is_free
;
var
$money
;
...
...
@@ -28,6 +29,7 @@ class UserMediaDat extends CompassDynamicData
parent
::
constructor
(
$record
);
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
course_id
=
$record
[
"course_id"
];
$this
->
media_id
=
$record
[
"media_id"
];
$this
->
is_free
=
$record
[
"is_free"
];
$this
->
money
=
$record
[
"money"
];
...
...
@@ -99,6 +101,7 @@ class UserMediaDat extends CompassDynamicData
$v_param
=
array
();
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"course_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"media_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"is_free"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"money"
);
...
...
src/cn/compass/entity/UserMst.inc
View file @
0e1222b8
<?php
/**
* UserMst Entity
* $Id: UserMst.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: UserMst.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
@@ -142,8 +142,8 @@ class UserMst extends CompassDynamicData
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"account_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"child_age"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"role"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"latitude"
);
ParamUtil
::
copyObj2Array
NullField
(
$v_param
,
$this
,
"longitude"
);
ParamUtil
::
copyObj2Array
NullField
(
$v_param
,
$this
,
"latitude"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"organization_submit_date"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"organization_no"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"organization_title"
);
...
...
src/cn/compass/entity/UserPointLog.inc
View file @
0e1222b8
<?php
/**
* UserPointLog Entity
* $Id: UserPointLog.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: UserPointLog.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/VolunteerEventDat.inc
View file @
0e1222b8
<?php
/**
* VolunteerEventDat Entity
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/1
4 16:39:17
Exp $
* @author
zb
* @package jp.compass.entity
* @access public
*/
...
...
src/cn/compass/entity/VolunteerEventMemberDat.inc
View file @
0e1222b8
<?php
/**
* VolunteerEventMemberDat Entity
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/1
3 11:17:48
Exp $
* @author
lixq
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/1
4 16:39:17
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