Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz人力资源
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz人力资源
提交
b705f799
提交
b705f799
编写于
8月 07, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
jackwang 部署微服务接口
上级
6d2314dd
变更
10
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
164 行增加
和
31 行删除
+164
-31
config.xml
config.xml
+5
-5
Dockerfile
...urce-app/humanresource-app-pim/src/main/docker/Dockerfile
+1
-1
humanresource-app-pim.yaml
...source-app-pim/src/main/docker/humanresource-app-pim.yaml
+1
-17
HREmployee.java
...b/humanresource/core/humanresource/domain/HREmployee.java
+63
-0
HREmployeeSearchContext.java
...ce/core/humanresource/filter/HREmployeeSearchContext.java
+7
-0
h2_table.xml
humanresource-core/src/main/resources/liquibase/h2_table.xml
+9
-3
HREmployeeMapper.xml
...rces/mapper/humanresource/hremployee/HREmployeeMapper.xml
+3
-3
Dockerfile
...r/humanresource-provider-hrapi/src/main/docker/Dockerfile
+1
-1
humanresource-provider-hrapi.yaml
...r-hrapi/src/main/docker/humanresource-provider-hrapi.yaml
+17
-1
HREmployeeDTO.java
...ava/cn/ibizlab/humanresource/hrapi/dto/HREmployeeDTO.java
+57
-0
未找到文件。
config.xml
浏览文件 @
b705f799
...
@@ -37,11 +37,11 @@
...
@@ -37,11 +37,11 @@
git clone -b master $para2 ibizhumanresources/
git clone -b master $para2 ibizhumanresources/
export NODE_OPTIONS=--max-old-space-size=4096
export NODE_OPTIONS=--max-old-space-size=4096
cd ibizhumanresources/
cd ibizhumanresources/
mvn clean package -P
pim
mvn clean package -P
hrapi
cd humanresource-
app/humanresource-app-pim
cd humanresource-
provider/humanresource-provider-hrapi
mvn -P
pim
docker:build
mvn -P
hrapi
docker:build
mvn -P
pim
docker:push
mvn -P
hrapi
docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/humanresource-
app-pim.yaml iBizEE --with-registry-auth
docker -H $para1 stack deploy --compose-file=src/main/docker/humanresource-
provider-hrapi.yaml iBizEE --with-registry-auth
</command>
</command>
</hudson.tasks.Shell>
</hudson.tasks.Shell>
</builders>
</builders>
...
...
humanresource-app/humanresource-app-pim/src/main/docker/Dockerfile
浏览文件 @
b705f799
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \
sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-app-pim.jar
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-app-pim.jar
EXPOSE
10327
EXPOSE
8080
ADD
humanresource-app-pim.jar /humanresource-app-pim.jar
ADD
humanresource-app-pim.jar /humanresource-app-pim.jar
humanresource-app/humanresource-app-pim/src/main/docker/humanresource-app-pim.yaml
浏览文件 @
b705f799
...
@@ -3,25 +3,9 @@ services:
...
@@ -3,25 +3,9 @@ services:
humanresource-app-pim
:
humanresource-app-pim
:
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-app-pim:latest
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-app-pim:latest
ports
:
ports
:
-
"
10327:10327
"
-
"
8080:8080
"
networks
:
networks
:
-
agent_network
-
agent_network
environment
:
-
SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.240.110
-
SERVER_PORT=10327
-
SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.240.110:8848
-
SPRING_REDIS_HOST=172.16.240.110
-
SPRING_REDIS_PORT=6379
-
SPRING_REDIS_DATABASE=0
-
SPRING_DATASOURCE_USERNAME=a_LAB01_e85d8801c
-
SPRING_DATASOURCE_PASSWORD=b1@@@772
-
SPRING_DATASOURCE_URL=jdbc:mysql://172.16.186.185:3306/a_LAB01_e85d8801c?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
-
SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
-
SPRING_DATASOURCE_DEFAULTSCHEMA=a_LAB01_e85d8801c
-
CAS=https://passport.ibizlab.cn
-
NACOS=172.16.240.110:8848
-
SEATA_REGISTRY_NACOS_SERVER-ADDR=172.16.240.110:8848
-
SEATA_ENABLED=true
deploy
:
deploy
:
resources
:
resources
:
limits
:
limits
:
...
...
humanresource-core/src/main/java/cn/ibizlab/humanresource/core/humanresource/domain/HREmployee.java
浏览文件 @
b705f799
...
@@ -103,6 +103,35 @@ public class HREmployee extends EntityMP implements Serializable {
...
@@ -103,6 +103,35 @@ public class HREmployee extends EntityMP implements Serializable {
@JSONField
(
name
=
"employeecode"
)
@JSONField
(
name
=
"employeecode"
)
@JsonProperty
(
"employeecode"
)
@JsonProperty
(
"employeecode"
)
private
String
employeecode
;
private
String
employeecode
;
/**
* 证件类型
*/
@TableField
(
value
=
"certtype"
)
@JSONField
(
name
=
"certtype"
)
@JsonProperty
(
"certtype"
)
private
String
certtype
;
/**
* 证件号码
*/
@TableField
(
value
=
"certnum"
)
@JSONField
(
name
=
"certnum"
)
@JsonProperty
(
"certnum"
)
private
String
certnum
;
/**
* 出生日期
*/
@TableField
(
value
=
"birthday"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
locale
=
"zh"
,
timezone
=
"GMT+8"
)
@JSONField
(
name
=
"birthday"
,
format
=
"yyyy-MM-dd"
)
@JsonProperty
(
"birthday"
)
private
Timestamp
birthday
;
/**
* 年龄
*/
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"age"
)
@JsonProperty
(
"age"
)
private
String
age
;
/**
/**
*
*
...
@@ -138,6 +167,40 @@ public class HREmployee extends EntityMP implements Serializable {
...
@@ -138,6 +167,40 @@ public class HREmployee extends EntityMP implements Serializable {
this
.
modify
(
"employeecode"
,
employeecode
);
this
.
modify
(
"employeecode"
,
employeecode
);
}
}
/**
* 设置 [证件类型]
*/
public
void
setCerttype
(
String
certtype
){
this
.
certtype
=
certtype
;
this
.
modify
(
"certtype"
,
certtype
);
}
/**
* 设置 [证件号码]
*/
public
void
setCertnum
(
String
certnum
){
this
.
certnum
=
certnum
;
this
.
modify
(
"certnum"
,
certnum
);
}
/**
* 设置 [出生日期]
*/
public
void
setBirthday
(
Timestamp
birthday
){
this
.
birthday
=
birthday
;
this
.
modify
(
"birthday"
,
birthday
);
}
/**
* 格式化日期 [出生日期]
*/
public
String
formatBirthday
(){
if
(
this
.
birthday
==
null
)
{
return
null
;
}
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
return
sdf
.
format
(
birthday
);
}
}
}
...
...
humanresource-core/src/main/java/cn/ibizlab/humanresource/core/humanresource/filter/HREmployeeSearchContext.java
浏览文件 @
b705f799
...
@@ -41,6 +41,13 @@ public class HREmployeeSearchContext extends QueryWrapperContext<HREmployee> {
...
@@ -41,6 +41,13 @@ public class HREmployeeSearchContext extends QueryWrapperContext<HREmployee> {
this
.
getSearchCond
().
eq
(
"organizationid"
,
n_organizationid_eq
);
this
.
getSearchCond
().
eq
(
"organizationid"
,
n_organizationid_eq
);
}
}
}
}
private
String
n_certtype_eq
;
//[证件类型]
public
void
setN_certtype_eq
(
String
n_certtype_eq
)
{
this
.
n_certtype_eq
=
n_certtype_eq
;
if
(!
ObjectUtils
.
isEmpty
(
this
.
n_certtype_eq
)){
this
.
getSearchCond
().
eq
(
"certtype"
,
n_certtype_eq
);
}
}
/**
/**
* 启用快速搜索
* 启用快速搜索
...
...
humanresource-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
b705f799
...
@@ -152,7 +152,7 @@
...
@@ -152,7 +152,7 @@
<!--输出实体[HREMPLOYEE]数据结构 -->
<!--输出实体[HREMPLOYEE]数据结构 -->
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-hremployee-
9
-7"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-hremployee-
18
-7"
>
<createTable
tableName=
"EMPLOYEE"
>
<createTable
tableName=
"EMPLOYEE"
>
<column
name=
"EMPLOYEENAME"
remarks=
""
type=
"VARCHAR(200)"
>
<column
name=
"EMPLOYEENAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
</column>
...
@@ -171,6 +171,12 @@
...
@@ -171,6 +171,12 @@
</column>
</column>
<column
name=
"EMPLOYEECODE"
remarks=
""
type=
"VARCHAR(100)"
>
<column
name=
"EMPLOYEECODE"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
</column>
<column
name=
"CERTTYPE"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
<column
name=
"CERTNUM"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
<column
name=
"BIRTHDAY"
remarks=
""
type=
"DATETIME"
>
</column>
</createTable>
</createTable>
</changeSet>
</changeSet>
...
@@ -270,7 +276,7 @@
...
@@ -270,7 +276,7 @@
<!--输出实体[HROMHIERARCHYCAT]数据结构 -->
<!--输出实体[HROMHIERARCHYCAT]数据结构 -->
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-hromhierarchycat-9
7
-12"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-hromhierarchycat-9
9
-12"
>
<createTable
tableName=
"OMHIERARCHYCAT"
>
<createTable
tableName=
"OMHIERARCHYCAT"
>
<column
name=
"OMHIERARCHYCATID"
remarks=
""
type=
"VARCHAR(100)"
>
<column
name=
"OMHIERARCHYCATID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_HROMHIERARCHYCAT_OMHIERARCH"
/>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_HROMHIERARCHYCAT_OMHIERARCH"
/>
...
@@ -510,7 +516,7 @@
...
@@ -510,7 +516,7 @@
<addForeignKeyConstraint
baseColumnNames=
"HRDUTYID"
baseTableName=
"T_HRDUTYSKILL"
constraintName=
"DER1N_HRDUTYSKILL_HRDUTY_HRDUT"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"HRDUTYID"
referencedTableName=
"T_HRDUTY"
validate=
"true"
/>
<addForeignKeyConstraint
baseColumnNames=
"HRDUTYID"
baseTableName=
"T_HRDUTYSKILL"
constraintName=
"DER1N_HRDUTYSKILL_HRDUTY_HRDUT"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"HRDUTYID"
referencedTableName=
"T_HRDUTY"
validate=
"true"
/>
</changeSet>
</changeSet>
<!--输出实体[HREMPLOYEE]外键关系 -->
<!--输出实体[HREMPLOYEE]外键关系 -->
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-hremployee-
9
-25"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-hremployee-
18
-25"
>
<addForeignKeyConstraint
baseColumnNames=
"ORGANIZATIONID"
baseTableName=
"EMPLOYEE"
constraintName=
"DER1N_EMPLOYEE_ORGANIZATION_OR"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"ORGANIZATIONID"
referencedTableName=
"ORGANIZATION"
validate=
"true"
/>
<addForeignKeyConstraint
baseColumnNames=
"ORGANIZATIONID"
baseTableName=
"EMPLOYEE"
constraintName=
"DER1N_EMPLOYEE_ORGANIZATION_OR"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"ORGANIZATIONID"
referencedTableName=
"ORGANIZATION"
validate=
"true"
/>
</changeSet>
</changeSet>
<!--输出实体[HRLEAVE]外键关系 -->
<!--输出实体[HRLEAVE]外键关系 -->
...
...
humanresource-core/src/main/resources/mapper/humanresource/hremployee/HREmployeeMapper.xml
浏览文件 @
b705f799
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<!--该方法用于重写mybatis中selectById方法,以实现查询逻辑属性-->
<!--该方法用于重写mybatis中selectById方法,以实现查询逻辑属性-->
<select
id=
"selectById"
resultMap=
"HREmployeeResultMap"
databaseId=
"mysql"
>
<select
id=
"selectById"
resultMap=
"HREmployeeResultMap"
databaseId=
"mysql"
>
<![CDATA[select t1.* from (SELECT t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1 ) t1 where employeeid=#{id}]]>
<![CDATA[select t1.* from (SELECT
(TIMESTAMPDIFF(YEAR, t1.`BIRTHDAY`, CURDATE())) AS `AGE`, t1.`BIRTHDAY`, t1.`CERTNUM`, t1.`CERTTYPE`,
t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1 ) t1 where employeeid=#{id}]]>
</select>
</select>
<!--通过mybatis将查询结果注入到entity中,通过配置autoMapping="true"由mybatis自动处理映射关系 -->
<!--通过mybatis将查询结果注入到entity中,通过配置autoMapping="true"由mybatis自动处理映射关系 -->
...
@@ -37,12 +37,12 @@
...
@@ -37,12 +37,12 @@
<!--数据查询[Default]-->
<!--数据查询[Default]-->
<sql
id=
"Default"
databaseId=
"mysql"
>
<sql
id=
"Default"
databaseId=
"mysql"
>
<![CDATA[ SELECT t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1
<![CDATA[ SELECT
(TIMESTAMPDIFF(YEAR, t1.`BIRTHDAY`, CURDATE())) AS `AGE`, t1.`BIRTHDAY`, t1.`CERTNUM`, t1.`CERTTYPE`,
t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1
]]>
]]>
</sql>
</sql>
<!--数据查询[View]-->
<!--数据查询[View]-->
<sql
id=
"View"
databaseId=
"mysql"
>
<sql
id=
"View"
databaseId=
"mysql"
>
<![CDATA[ SELECT t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1
<![CDATA[ SELECT
(TIMESTAMPDIFF(YEAR, t1.`BIRTHDAY`, CURDATE())) AS `AGE`, t1.`BIRTHDAY`, t1.`CERTNUM`, t1.`CERTTYPE`,
t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`EMPLOYEECODE`, t1.`EMPLOYEEID`, t1.`EMPLOYEENAME`, t1.`ORGANIZATIONID`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `EMPLOYEE` t1
]]>
]]>
</sql>
</sql>
</mapper>
</mapper>
...
...
humanresource-provider/humanresource-provider-hrapi/src/main/docker/Dockerfile
浏览文件 @
b705f799
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \
sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-provider-hrapi.jar
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-provider-hrapi.jar
EXPOSE
8081
EXPOSE
10317
ADD
humanresource-provider-hrapi.jar /humanresource-provider-hrapi.jar
ADD
humanresource-provider-hrapi.jar /humanresource-provider-hrapi.jar
humanresource-provider/humanresource-provider-hrapi/src/main/docker/humanresource-provider-hrapi.yaml
浏览文件 @
b705f799
...
@@ -3,9 +3,25 @@ services:
...
@@ -3,9 +3,25 @@ services:
humanresource-provider-hrapi
:
humanresource-provider-hrapi
:
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-provider-hrapi:latest
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-provider-hrapi:latest
ports
:
ports
:
-
"
8081:8081
"
-
"
10317:10317
"
networks
:
networks
:
-
agent_network
-
agent_network
environment
:
-
SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.240.110
-
SERVER_PORT=10317
-
SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.240.110:8848
-
SPRING_REDIS_HOST=172.16.240.110
-
SPRING_REDIS_PORT=6379
-
SPRING_REDIS_DATABASE=0
-
SPRING_DATASOURCE_USERNAME=a_LAB01_e85d8801c
-
SPRING_DATASOURCE_PASSWORD=b1@@@772
-
SPRING_DATASOURCE_URL=jdbc:mysql://172.16.186.185:3306/a_LAB01_e85d8801c?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
-
SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
-
SPRING_DATASOURCE_DEFAULTSCHEMA=a_LAB01_e85d8801c
-
CAS=https://passport.ibizlab.cn
-
NACOS=172.16.240.110:8848
-
SEATA_REGISTRY_NACOS_SERVER-ADDR=172.16.240.110:8848
-
SEATA_ENABLED=true
deploy
:
deploy
:
resources
:
resources
:
limits
:
limits
:
...
...
humanresource-provider/humanresource-provider-hrapi/src/main/java/cn/ibizlab/humanresource/hrapi/dto/HREmployeeDTO.java
浏览文件 @
b705f799
...
@@ -90,6 +90,39 @@ public class HREmployeeDTO extends DTOBase implements Serializable {
...
@@ -90,6 +90,39 @@ public class HREmployeeDTO extends DTOBase implements Serializable {
@JsonProperty
(
"employeecode"
)
@JsonProperty
(
"employeecode"
)
private
String
employeecode
;
private
String
employeecode
;
/**
* 属性 [CERTTYPE]
*
*/
@JSONField
(
name
=
"certtype"
)
@JsonProperty
(
"certtype"
)
private
String
certtype
;
/**
* 属性 [CERTNUM]
*
*/
@JSONField
(
name
=
"certnum"
)
@JsonProperty
(
"certnum"
)
private
String
certnum
;
/**
* 属性 [BIRTHDAY]
*
*/
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
locale
=
"zh"
,
timezone
=
"GMT+8"
)
@JSONField
(
name
=
"birthday"
,
format
=
"yyyy-MM-dd"
)
@JsonProperty
(
"birthday"
)
private
Timestamp
birthday
;
/**
* 属性 [AGE]
*
*/
@JSONField
(
name
=
"age"
)
@JsonProperty
(
"age"
)
private
String
age
;
/**
/**
* 设置 [EMPLOYEENAME]
* 设置 [EMPLOYEENAME]
...
@@ -115,6 +148,30 @@ public class HREmployeeDTO extends DTOBase implements Serializable {
...
@@ -115,6 +148,30 @@ public class HREmployeeDTO extends DTOBase implements Serializable {
this
.
modify
(
"employeecode"
,
employeecode
);
this
.
modify
(
"employeecode"
,
employeecode
);
}
}
/**
* 设置 [CERTTYPE]
*/
public
void
setCerttype
(
String
certtype
){
this
.
certtype
=
certtype
;
this
.
modify
(
"certtype"
,
certtype
);
}
/**
* 设置 [CERTNUM]
*/
public
void
setCertnum
(
String
certnum
){
this
.
certnum
=
certnum
;
this
.
modify
(
"certnum"
,
certnum
);
}
/**
* 设置 [BIRTHDAY]
*/
public
void
setBirthday
(
Timestamp
birthday
){
this
.
birthday
=
birthday
;
this
.
modify
(
"birthday"
,
birthday
);
}
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录