Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-smart
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
platform
hp-smart
Commits
4d974f54
Commit
4d974f54
authored
Feb 26, 2024
by
yukang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
https://gitlab.baocloud.cn/bggf/smart/hp-smart
into dev
parents
20e7a188
5ec59085
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
245 additions
and
0 deletions
+245
-0
HPRZ001.java
src/main/java/com/baosight/hpjx/hp/rz/domian/HPRZ001.java
+245
-0
No files found.
src/main/java/com/baosight/hpjx/hp/rz/domian/HPRZ001.java
0 → 100644
View file @
4d974f54
/**
* Generate time : 2024-02-23 15:28:50
* Version : 1.0
*/
package
com
.
baosight
.
hpjx
.
hp
.
rz
.
domian
;
import
com.baosight.iplat4j.core.util.NumberUtils
;
import
com.baosight.iplat4j.core.ei.EiColumn
;
import
com.baosight.iplat4j.core.data.DaoEPBase
;
import
java.util.HashMap
;
import
java.util.Map
;
import
com.baosight.iplat4j.core.util.StringUtils
;
/**
* SysOperationLog
*
*/
public
class
HPRZ001
extends
DaoEPBase
{
private
Long
id
=
0L
;
/* 主键id*/
private
String
companyCode
=
" "
;
/* 企业编码*/
private
String
createdBy
=
" "
;
/* 创建人*/
private
String
createdName
=
" "
;
/* 创建人名称*/
private
String
createdTime
=
" "
;
/* 创建时间*/
private
String
operModul
=
" "
;
/* 操作模块*/
private
String
operType
=
" "
;
/* 操作类型*/
private
String
operDesc
=
" "
;
/* 操作说明*/
private
String
operContent
=
" "
;
/* 操作内容*/
public
static
final
String
QUERY
=
"HPRZ001.query"
;
/**
* initialize the metadata
*/
public
void
initMetaData
()
{
EiColumn
eiColumn
;
eiColumn
=
new
EiColumn
(
"id"
);
eiColumn
.
setPrimaryKey
(
true
);
eiColumn
.
setDescName
(
"主键id"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"companyCode"
);
eiColumn
.
setDescName
(
"企业编码"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"createdBy"
);
eiColumn
.
setDescName
(
"创建人"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"createdName"
);
eiColumn
.
setDescName
(
"创建人名称"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"createdTime"
);
eiColumn
.
setDescName
(
"创建时间"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"operModul"
);
eiColumn
.
setDescName
(
"操作模块"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"operType"
);
eiColumn
.
setDescName
(
"操作类型"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"operDesc"
);
eiColumn
.
setDescName
(
"操作说明"
);
eiMetadata
.
addMeta
(
eiColumn
);
eiColumn
=
new
EiColumn
(
"operContent"
);
eiColumn
.
setDescName
(
"操作内容"
);
eiMetadata
.
addMeta
(
eiColumn
);
}
/**
* the constructor
*/
public
HPRZ001
()
{
initMetaData
();
}
/**
* get the id - 主键id
* @return the id
*/
public
Long
getId
()
{
return
this
.
id
;
}
/**
* set the id - 主键id
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* get the companyCode - 企业编码
* @return the companyCode
*/
public
String
getCompanyCode
()
{
return
this
.
companyCode
;
}
/**
* set the companyCode - 企业编码
*/
public
void
setCompanyCode
(
String
companyCode
)
{
this
.
companyCode
=
companyCode
;
}
/**
* get the createdBy - 创建人
* @return the createdBy
*/
public
String
getCreatedBy
()
{
return
this
.
createdBy
;
}
/**
* set the createdBy - 创建人
*/
public
void
setCreatedBy
(
String
createdBy
)
{
this
.
createdBy
=
createdBy
;
}
/**
* get the createdName - 创建人名称
* @return the createdName
*/
public
String
getCreatedName
()
{
return
this
.
createdName
;
}
/**
* set the createdName - 创建人名称
*/
public
void
setCreatedName
(
String
createdName
)
{
this
.
createdName
=
createdName
;
}
/**
* get the createdTime - 创建时间
* @return the createdTime
*/
public
String
getCreatedTime
()
{
return
this
.
createdTime
;
}
/**
* set the createdTime - 创建时间
*/
public
void
setCreatedTime
(
String
createdTime
)
{
this
.
createdTime
=
createdTime
;
}
/**
* get the operModul - 操作模块
* @return the operModul
*/
public
String
getOperModul
()
{
return
this
.
operModul
;
}
/**
* set the operModul - 操作模块
*/
public
void
setOperModul
(
String
operModul
)
{
this
.
operModul
=
operModul
;
}
/**
* get the operType - 操作类型
* @return the operType
*/
public
String
getOperType
()
{
return
this
.
operType
;
}
/**
* set the operType - 操作类型
*/
public
void
setOperType
(
String
operType
)
{
this
.
operType
=
operType
;
}
/**
* get the operDesc - 操作说明
* @return the operDesc
*/
public
String
getOperDesc
()
{
return
this
.
operDesc
;
}
/**
* set the operDesc - 操作说明
*/
public
void
setOperDesc
(
String
operDesc
)
{
this
.
operDesc
=
operDesc
;
}
/**
* get the operContent - 操作内容
* @return the operContent
*/
public
String
getOperContent
()
{
return
this
.
operContent
;
}
/**
* set the operContent - 操作内容
*/
public
void
setOperContent
(
String
operContent
)
{
this
.
operContent
=
operContent
;
}
/**
* get the value from Map
*/
public
void
fromMap
(
Map
map
)
{
setId
(
NumberUtils
.
toLong
(
StringUtils
.
toString
(
map
.
get
(
"id"
)),
id
));
setCompanyCode
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"companyCode"
)),
companyCode
));
setCreatedBy
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"createdBy"
)),
createdBy
));
setCreatedName
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"createdName"
)),
createdName
));
setCreatedTime
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"createdTime"
)),
createdTime
));
setOperModul
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"operModul"
)),
operModul
));
setOperType
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"operType"
)),
operType
));
setOperDesc
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"operDesc"
)),
operDesc
));
setOperContent
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
"operContent"
)),
operContent
));
}
/**
* set the value to Map
*/
public
Map
toMap
()
{
Map
map
=
new
HashMap
();
map
.
put
(
"id"
,
StringUtils
.
toString
(
id
,
eiMetadata
.
getMeta
(
"id"
)));
map
.
put
(
"companyCode"
,
StringUtils
.
toString
(
companyCode
,
eiMetadata
.
getMeta
(
"companyCode"
)));
map
.
put
(
"createdBy"
,
StringUtils
.
toString
(
createdBy
,
eiMetadata
.
getMeta
(
"createdBy"
)));
map
.
put
(
"createdName"
,
StringUtils
.
toString
(
createdName
,
eiMetadata
.
getMeta
(
"createdName"
)));
map
.
put
(
"createdTime"
,
StringUtils
.
toString
(
createdTime
,
eiMetadata
.
getMeta
(
"createdTime"
)));
map
.
put
(
"operModul"
,
StringUtils
.
toString
(
operModul
,
eiMetadata
.
getMeta
(
"operModul"
)));
map
.
put
(
"operType"
,
StringUtils
.
toString
(
operType
,
eiMetadata
.
getMeta
(
"operType"
)));
map
.
put
(
"operDesc"
,
StringUtils
.
toString
(
operDesc
,
eiMetadata
.
getMeta
(
"operDesc"
)));
map
.
put
(
"operContent"
,
StringUtils
.
toString
(
operContent
,
eiMetadata
.
getMeta
(
"operContent"
)));
return
map
;
}
}
\ No newline at end of file
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