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
aed44eeb
Commit
aed44eeb
authored
Feb 22, 2020
by
biao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
8c700a49
Show whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
79 additions
and
32 deletions
+79
-32
compass_db_schema.txt
doc/DB/compass_db_schema.txt
+14
-3
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
+4
-1
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
+1
-1
CourseMst.inc
src/cn/compass/entity/CourseMst.inc
+1
-1
FamilyEventDat.inc
src/cn/compass/entity/FamilyEventDat.inc
+1
-1
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
SocialEventDat.inc
src/cn/compass/entity/SocialEventDat.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
+1
-1
UserPointLog.inc
src/cn/compass/entity/UserPointLog.inc
+1
-1
VolunteerEventDat.inc
src/cn/compass/entity/VolunteerEventDat.inc
+22
-4
VolunteerEventMemberDat.inc
src/cn/compass/entity/VolunteerEventMemberDat.inc
+16
-1
No files found.
doc/DB/compass_db_schema.txt
View file @
aed44eeb
...
@@ -197,9 +197,9 @@ CREATE TABLE IF NOT EXISTS user_mst(
...
@@ -197,9 +197,9 @@ CREATE TABLE IF NOT EXISTS user_mst(
mobile varchar(32),
mobile varchar(32),
account_id int8 NOT NULL DEFAULT '0',
account_id int8 NOT NULL DEFAULT '0',
child_age int8 NOT NULL DEFAULT '1',
child_age int8 NOT NULL DEFAULT '1',
role
varchar(128)
NOT NULL DEFAULT '0',
role
int8
NOT NULL DEFAULT '0',
school_owner tinyint(1) NOT NULL DEFAULT '0',
school_owner tinyint(1) NOT NULL DEFAULT '0',
class_owner tinyint(1) NOT NULL DEFAULT '0'
class_owner tinyint(1) NOT NULL DEFAULT '0'
,
longitude text,
longitude text,
latitude text,
latitude text,
government_id int8 NOT NULL DEFAULT '0',
government_id int8 NOT NULL DEFAULT '0',
...
@@ -340,7 +340,13 @@ CREATE TABLE IF NOT EXISTS volunteer_event_dat(
...
@@ -340,7 +340,13 @@ CREATE TABLE IF NOT EXISTS volunteer_event_dat(
position text NOT NULL,
position text NOT NULL,
position_longitude text NOT NULL,
position_longitude text NOT NULL,
position_latitude text NOT NULL,
position_latitude text NOT NULL,
scope int8 NOT NULL,
author varchar(64) NOT NULL,
author_role int8 NOT NULL DEFAULT '0',
school_id int8 NOT NULL DEFAULT '0',
province varchar(64),
city varchar(64),
district varchar(64),
include_social_user tinyint(1) NOT NULL DEFAULT '0',
max_member int8 NOT NULL DEFAULT '0',
max_member int8 NOT NULL DEFAULT '0',
time_length varchar(64) NOT NULL,
time_length varchar(64) NOT NULL,
leader_name varchar(64) NOT NULL,
leader_name varchar(64) NOT NULL,
...
@@ -360,12 +366,17 @@ CREATE TABLE IF NOT EXISTS volunteer_event_member_dat(
...
@@ -360,12 +366,17 @@ CREATE TABLE IF NOT EXISTS volunteer_event_member_dat(
id bigint unsigned NOT NULL PRIMARY KEY auto_increment,
id bigint unsigned NOT NULL PRIMARY KEY auto_increment,
registration_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
registration_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
volunteer_event_id int8 NOT NULL,
volunteer_event_id int8 NOT NULL,
index_no varchar(5) NOT NULL,
user_id int8 NOT NULL,
user_id int8 NOT NULL,
circle_id int8 NOT NULL DEFAULT '0',
mobile varchar(32) NOT NULL,
comment text NOT NULL,
comment text NOT NULL,
images text NOT NULL,
images text NOT NULL,
position text NOT NULL,
position text NOT NULL,
position_longitude text NOT NULL,
position_longitude text NOT NULL,
position_latitude text NOT NULL,
position_latitude text NOT NULL,
role int8 NOT NULL DEFAULT '0',
finish_time timestamp NOT NULL,
status varchar(64) NOT NULL DEFAULT 'NEW',
status varchar(64) NOT NULL DEFAULT 'NEW',
delete_flg tinyint(1) NOT NULL DEFAULT '0'
delete_flg tinyint(1) NOT NULL DEFAULT '0'
) ENGINE = INNODB DEFAULT CHARSET=utf8mb4;
) ENGINE = INNODB DEFAULT CHARSET=utf8mb4;
...
...
src/cn/compass/entity/AccountMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* AccountMst Entity
* AccountMst Entity
* $Id: AccountMst.inc,v 1.1 2020/2/
13 10:54:23
Exp $
* $Id: AccountMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author
lixq
* @author
zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
*/
*/
...
...
src/cn/compass/entity/CertificateMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CertificateMst Entity
* CertificateMst Entity
* $Id: CertificateMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CertificateMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/CircleDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CircleDat Entity
* CircleDat Entity
* $Id: CircleDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CircleDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/CircleMemberDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CircleMemberDat Entity
* CircleMemberDat Entity
* $Id: CircleMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CircleMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
@@ -10,6 +10,7 @@ class CircleMemberDat extends CompassDynamicData
...
@@ -10,6 +10,7 @@ class CircleMemberDat extends CompassDynamicData
{
{
var
$circle_id
;
var
$circle_id
;
var
$user_id
;
var
$user_id
;
var
$name
;
var
$delete_flg
;
var
$delete_flg
;
/**
/**
...
@@ -24,6 +25,7 @@ class CircleMemberDat extends CompassDynamicData
...
@@ -24,6 +25,7 @@ class CircleMemberDat extends CompassDynamicData
$this
->
circle_id
=
$record
[
"circle_id"
];
$this
->
circle_id
=
$record
[
"circle_id"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
name
=
$record
[
"name"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
}
}
...
@@ -90,6 +92,7 @@ class CircleMemberDat extends CompassDynamicData
...
@@ -90,6 +92,7 @@ class CircleMemberDat extends CompassDynamicData
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"circle_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"circle_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"name"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
// 保存
// 保存
...
...
src/cn/compass/entity/ClassMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* ClassMst Entity
* ClassMst Entity
* $Id: ClassMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: ClassMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/CourseCategoryDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CourseCategoryDat Entity
* CourseCategoryDat Entity
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CourseCategoryDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/CourseMediaDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CourseMediaDat Entity
* CourseMediaDat Entity
* $Id: CourseMediaDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CourseMediaDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/CourseMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* CourseMst Entity
* CourseMst Entity
* $Id: CourseMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: CourseMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/FamilyEventDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* FamilyEventDat Entity
* FamilyEventDat Entity
* $Id: FamilyEventDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: FamilyEventDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/FamilyEventMemberDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* FamilyEventMemberDat Entity
* FamilyEventMemberDat Entity
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: FamilyEventMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/GovernmentMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* GovernmentMst Entity
* GovernmentMst Entity
* $Id: GovernmentMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: GovernmentMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/GovernmentQrDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* GovernmentQrDat Entity
* GovernmentQrDat Entity
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: GovernmentQrDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/GradeMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* GradeMst Entity
* GradeMst Entity
* $Id: GradeMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: GradeMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/MediaTagDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* MediaTagDat Entity
* MediaTagDat Entity
* $Id: MediaTagDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: MediaTagDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/SchoolMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* SchoolMst Entity
* SchoolMst Entity
* $Id: SchoolMst.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: SchoolMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/SocialEventDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* SocialEventDat Entity
* SocialEventDat Entity
* $Id: SocialEventDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: SocialEventDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/SocialEventMemberDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* SocialEventMemberDat Entity
* SocialEventMemberDat Entity
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: SocialEventMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/SystemConstantDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* SystemConstantDat Entity
* SystemConstantDat Entity
* $Id: SystemConstantDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: SystemConstantDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/UserCertificateDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* UserCertificateDat Entity
* UserCertificateDat Entity
* $Id: UserCertificateDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: UserCertificateDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/UserMediaDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* UserMediaDat Entity
* UserMediaDat Entity
* $Id: UserMediaDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: UserMediaDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/UserMessageDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* UserMessageDat Entity
* UserMessageDat Entity
* $Id: UserMessageDat.inc,v 1.1 2020/2/
17 17:20:32
Exp $
* $Id: UserMessageDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/UserMst.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* UserMst Entity
* UserMst Entity
* $Id: UserMst.inc,v 1.1 2020/2/
18 20:07:42
Exp $
* $Id: UserMst.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/UserPointLog.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* UserPointLog Entity
* UserPointLog Entity
* $Id: UserPointLog.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: UserPointLog.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
...
src/cn/compass/entity/VolunteerEventDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* VolunteerEventDat Entity
* VolunteerEventDat Entity
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: VolunteerEventDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
@@ -14,7 +14,13 @@ class VolunteerEventDat extends CompassDynamicData
...
@@ -14,7 +14,13 @@ class VolunteerEventDat extends CompassDynamicData
var
$position
;
var
$position
;
var
$position_longitude
;
var
$position_longitude
;
var
$position_latitude
;
var
$position_latitude
;
var
$scope
;
var
$author
;
var
$author_role
;
var
$school_id
;
var
$province
;
var
$city
;
var
$district
;
var
$include_social_user
;
var
$max_member
;
var
$max_member
;
var
$time_length
;
var
$time_length
;
var
$leader_name
;
var
$leader_name
;
...
@@ -39,7 +45,13 @@ class VolunteerEventDat extends CompassDynamicData
...
@@ -39,7 +45,13 @@ class VolunteerEventDat extends CompassDynamicData
$this
->
position
=
$record
[
"position"
];
$this
->
position
=
$record
[
"position"
];
$this
->
position_longitude
=
$record
[
"position_longitude"
];
$this
->
position_longitude
=
$record
[
"position_longitude"
];
$this
->
position_latitude
=
$record
[
"position_latitude"
];
$this
->
position_latitude
=
$record
[
"position_latitude"
];
$this
->
scope
=
$record
[
"scope"
];
$this
->
author
=
$record
[
"author"
];
$this
->
author_role
=
$record
[
"author_role"
];
$this
->
school_id
=
$record
[
"school_id"
];
$this
->
province
=
$record
[
"province"
];
$this
->
city
=
$record
[
"city"
];
$this
->
district
=
$record
[
"district"
];
$this
->
include_social_user
=
$record
[
"include_social_user"
];
$this
->
max_member
=
$record
[
"max_member"
];
$this
->
max_member
=
$record
[
"max_member"
];
$this
->
time_length
=
$record
[
"time_length"
];
$this
->
time_length
=
$record
[
"time_length"
];
$this
->
leader_name
=
$record
[
"leader_name"
];
$this
->
leader_name
=
$record
[
"leader_name"
];
...
@@ -116,7 +128,13 @@ class VolunteerEventDat extends CompassDynamicData
...
@@ -116,7 +128,13 @@ class VolunteerEventDat extends CompassDynamicData
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_latitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_latitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"scope"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"author"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"author_role"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"school_id"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"province"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"city"
);
ParamUtil
::
copyObj2ArrayNullField
(
$v_param
,
$this
,
"district"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"include_social_user"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"max_member"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"max_member"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"time_length"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"time_length"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"leader_name"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"leader_name"
);
...
...
src/cn/compass/entity/VolunteerEventMemberDat.inc
View file @
aed44eeb
<?php
<?php
/**
/**
* VolunteerEventMemberDat Entity
* VolunteerEventMemberDat Entity
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/
14 16:39:17
Exp $
* $Id: VolunteerEventMemberDat.inc,v 1.1 2020/2/
22 11:26:51
Exp $
* @author zb
* @author zb
* @package jp.compass.entity
* @package jp.compass.entity
* @access public
* @access public
...
@@ -9,12 +9,17 @@
...
@@ -9,12 +9,17 @@
class
VolunteerEventMemberDat
extends
CompassDynamicData
class
VolunteerEventMemberDat
extends
CompassDynamicData
{
{
var
$volunteer_event_id
;
var
$volunteer_event_id
;
var
$index_no
;
var
$user_id
;
var
$user_id
;
var
$circle_id
;
var
$mobile
;
var
$comment
;
var
$comment
;
var
$images
;
var
$images
;
var
$position
;
var
$position
;
var
$position_longitude
;
var
$position_longitude
;
var
$position_latitude
;
var
$position_latitude
;
var
$role
;
var
$finish_time
;
var
$status
;
var
$status
;
var
$delete_flg
;
var
$delete_flg
;
...
@@ -29,12 +34,17 @@ class VolunteerEventMemberDat extends CompassDynamicData
...
@@ -29,12 +34,17 @@ class VolunteerEventMemberDat extends CompassDynamicData
parent
::
constructor
(
$record
);
parent
::
constructor
(
$record
);
$this
->
volunteer_event_id
=
$record
[
"volunteer_event_id"
];
$this
->
volunteer_event_id
=
$record
[
"volunteer_event_id"
];
$this
->
index_no
=
$record
[
"index_no"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
user_id
=
$record
[
"user_id"
];
$this
->
circle_id
=
$record
[
"circle_id"
];
$this
->
mobile
=
$record
[
"mobile"
];
$this
->
comment
=
$record
[
"comment"
];
$this
->
comment
=
$record
[
"comment"
];
$this
->
images
=
$record
[
"images"
];
$this
->
images
=
$record
[
"images"
];
$this
->
position
=
$record
[
"position"
];
$this
->
position
=
$record
[
"position"
];
$this
->
position_longitude
=
$record
[
"position_longitude"
];
$this
->
position_longitude
=
$record
[
"position_longitude"
];
$this
->
position_latitude
=
$record
[
"position_latitude"
];
$this
->
position_latitude
=
$record
[
"position_latitude"
];
$this
->
role
=
$record
[
"role"
];
$this
->
finish_time
=
$record
[
"finish_time"
];
$this
->
status
=
$record
[
"status"
];
$this
->
status
=
$record
[
"status"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
$this
->
delete_flg
=
$record
[
"delete_flg"
];
}
}
...
@@ -101,12 +111,17 @@ class VolunteerEventMemberDat extends CompassDynamicData
...
@@ -101,12 +111,17 @@ class VolunteerEventMemberDat extends CompassDynamicData
$v_param
=
array
();
$v_param
=
array
();
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"volunteer_event_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"volunteer_event_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"index_no"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"user_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"circle_id"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"mobile"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"comment"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"comment"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"images"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"images"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_longitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_latitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"position_latitude"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"role"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"finish_time"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"status"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"status"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
ParamUtil
::
copyObj2Array
(
$v_param
,
$this
,
"delete_flg"
);
...
...
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