提交 f5d209ab 编写于 作者: ibizdev's avatar ibizdev

kuaikuai 发布系统代码 [后台服务,演示应用]

上级 74e218f7
......@@ -31,6 +31,8 @@ export default {
updateman: "更新人",
ibizsample0001id: "IBIZSAMPLE0001标识",
createdate: "建立时间",
field: "大整型",
field2: "大数值",
},
views: {
sf5editview: {
......@@ -122,8 +124,10 @@ export default {
field03: "长文本,没有长度限制",
field04: "HTML文本,没有长度限制",
field05: "整型",
field: "大整型",
field06: "浮点",
field07: "数值",
field2: "大数值",
field08: "日期时间型",
field09: "日期型",
field10: "时间型",
......@@ -133,6 +137,7 @@ export default {
field14: "单项选择(文本值)",
field15: "多项选择(数值)",
field16: "多项选择(文本值)",
field24: "选择项文本",
field17: "数字串业务标识,数字类型,用户可见",
field18: "字符串业务标识,文本类型,用户可见",
field19: "货币",
......
......@@ -30,6 +30,8 @@ export default {
updateman: "更新人",
ibizsample0001id: "IBIZSAMPLE0001标识",
createdate: "建立时间",
field: "大整型",
field2: "大数值",
},
views: {
sf5editview: {
......@@ -121,8 +123,10 @@ export default {
field03: "长文本,没有长度限制",
field04: "HTML文本,没有长度限制",
field05: "整型",
field: "大整型",
field06: "浮点",
field07: "数值",
field2: "大数值",
field08: "日期时间型",
field09: "日期型",
field10: "时间型",
......@@ -132,6 +136,7 @@ export default {
field14: "单项选择(文本值)",
field15: "多项选择(数值)",
field16: "多项选择(文本值)",
field24: "选择项文本",
field17: "数字串业务标识,数字类型,用户可见",
field18: "字符串业务标识,文本类型,用户可见",
field19: "货币",
......
......@@ -106,7 +106,7 @@
valueType="string"
tag='ORDERSTATE'
codelistType='STATIC'
placeholder='请选择...' style="">
placeholder='订单的当前状态' style="">
</dropdown-list>
</app-form-item>
......
......@@ -53,6 +53,20 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field' :itemRules="this.rules().field" class='' :caption="$t('entities.ibizsample0001.main_form.details.field')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box
v-model="data.field"
@enter="onEnter($event)"
unit=""
:disabled="detailsModel.field.disabled"
type='number'
style="">
</input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field06.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field06' :itemRules="this.rules().field06" class='' :caption="$t('entities.ibizsample0001.main_form.details.field06')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field06.error" :isEmptyCaption="false" labelPos="LEFT">
......@@ -83,6 +97,21 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field2.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field2' :itemRules="this.rules().field2" class='' :caption="$t('entities.ibizsample0001.main_form.details.field2')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field2.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box
v-model="data.field2"
@enter="onEnter($event)"
unit=""
:disabled="detailsModel.field2.disabled"
type='number'
:precision="2"
style="">
</input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field08.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field08' :itemRules="this.rules().field08" class='' :caption="$t('entities.ibizsample0001.main_form.details.field08')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field08.error" :isEmptyCaption="false" labelPos="LEFT">
......@@ -228,6 +257,20 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field24.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field24' :itemRules="this.rules().field24" class='' :caption="$t('entities.ibizsample0001.main_form.details.field24')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field24.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box
v-model="data.field24"
@enter="onEnter($event)"
unit=""
:disabled="detailsModel.field24.disabled"
type='text'
style="">
</input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field17.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='field17' :itemRules="this.rules().field17" class='' :caption="$t('entities.ibizsample0001.main_form.details.field17')" uiStyle="DEFAULT" :labelWidth="150" :isShowCaption="true" :error="detailsModel.field17.error" :isEmptyCaption="false" labelPos="LEFT">
......@@ -670,8 +713,10 @@ export default class MainBase extends Vue implements ControlInterface {
field03: null,
field04: null,
field05: null,
field: null,
field06: null,
field07: null,
field2: null,
field08: null,
field09: null,
field10: null,
......@@ -681,6 +726,7 @@ export default class MainBase extends Vue implements ControlInterface {
field14: null,
field15: null,
field16: null,
field24: null,
field17: null,
field18: null,
field19: null,
......@@ -751,6 +797,10 @@ export default class MainBase extends Vue implements ControlInterface {
{ required: this.detailsModel.field05.required, type: 'number', message: '整型 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field05.required, type: 'number', message: '整型 值不能为空', trigger: 'blur' },
],
field: [
{ required: this.detailsModel.field.required, type: 'number', message: '大整型 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field.required, type: 'number', message: '大整型 值不能为空', trigger: 'blur' },
],
field06: [
{ required: this.detailsModel.field06.required, type: 'number', message: '浮点 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field06.required, type: 'number', message: '浮点 值不能为空', trigger: 'blur' },
......@@ -759,6 +809,10 @@ export default class MainBase extends Vue implements ControlInterface {
{ required: this.detailsModel.field07.required, type: 'number', message: '数值 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field07.required, type: 'number', message: '数值 值不能为空', trigger: 'blur' },
],
field2: [
{ required: this.detailsModel.field2.required, type: 'number', message: '大数值 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field2.required, type: 'number', message: '大数值 值不能为空', trigger: 'blur' },
],
field08: [
{ required: this.detailsModel.field08.required, type: 'string', message: '日期时间型 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field08.required, type: 'string', message: '日期时间型 值不能为空', trigger: 'blur' },
......@@ -795,6 +849,10 @@ export default class MainBase extends Vue implements ControlInterface {
{ required: this.detailsModel.field16.required, type: 'string', message: '多项选择(文本值) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field16.required, type: 'string', message: '多项选择(文本值) 值不能为空', trigger: 'blur' },
],
field24: [
{ required: this.detailsModel.field24.required, type: 'string', message: '选择项文本 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field24.required, type: 'string', message: '选择项文本 值不能为空', trigger: 'blur' },
],
field17: [
{ required: this.detailsModel.field17.required, type: 'number', message: '数字串业务标识,数字类型,用户可见 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field17.required, type: 'number', message: '数字串业务标识,数字类型,用户可见 值不能为空', trigger: 'blur' },
......@@ -942,10 +1000,14 @@ export default class MainBase extends Vue implements ControlInterface {
field04: new FormItemModel({ caption: 'HTML文本,没有长度限制', detailType: 'FORMITEM', name: 'field04', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field05: new FormItemModel({ caption: '整型', detailType: 'FORMITEM', name: 'field05', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field: new FormItemModel({ caption: '大整型', detailType: 'FORMITEM', name: 'field', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field06: new FormItemModel({ caption: '浮点', detailType: 'FORMITEM', name: 'field06', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field07: new FormItemModel({ caption: '数值', detailType: 'FORMITEM', name: 'field07', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field2: new FormItemModel({ caption: '大数值', detailType: 'FORMITEM', name: 'field2', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field08: new FormItemModel({ caption: '日期时间型', detailType: 'FORMITEM', name: 'field08', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
......@@ -964,6 +1026,8 @@ export default class MainBase extends Vue implements ControlInterface {
field15: new FormItemModel({ caption: '多项选择(数值)', detailType: 'FORMITEM', name: 'field15', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field16: new FormItemModel({ caption: '多项选择(文本值)', detailType: 'FORMITEM', name: 'field16', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field24: new FormItemModel({ caption: '选择项文本', detailType: 'FORMITEM', name: 'field24', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field17: new FormItemModel({ caption: '数字串业务标识,数字类型,用户可见', detailType: 'FORMITEM', name: 'field17', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
......@@ -1137,6 +1201,18 @@ export default class MainBase extends Vue implements ControlInterface {
this.formDataChange({ name: 'field05', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@Watch('data.field')
onFieldChange(newVal: any, oldVal: any) {
this.formDataChange({ name: 'field', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field06 值
*
......@@ -1161,6 +1237,18 @@ export default class MainBase extends Vue implements ControlInterface {
this.formDataChange({ name: 'field07', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field2 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@Watch('data.field2')
onField2Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'field2', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field08 值
*
......@@ -1269,6 +1357,18 @@ export default class MainBase extends Vue implements ControlInterface {
this.formDataChange({ name: 'field16', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field24 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@Watch('data.field24')
onField24Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'field24', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 field17 值
*
......@@ -1436,6 +1536,9 @@ export default class MainBase extends Vue implements ControlInterface {
......
......@@ -80,6 +80,11 @@ export default class MainModel {
prop: 'field05',
dataType: 'INT',
},
{
name: 'field',
prop: 'field',
dataType: 'BIGINT',
},
{
name: 'field06',
prop: 'field06',
......@@ -90,6 +95,11 @@ export default class MainModel {
prop: 'field07',
dataType: 'DECIMAL',
},
{
name: 'field2',
prop: 'field2',
dataType: 'BIGDECIMAL',
},
{
name: 'field08',
prop: 'field08',
......@@ -135,6 +145,11 @@ export default class MainModel {
prop: 'field16',
dataType: 'SMCODELIST',
},
{
name: 'field24',
prop: 'field24',
dataType: 'CODELISTTEXT',
},
{
name: 'field17',
prop: 'field17',
......
......@@ -37,11 +37,6 @@
git clone -b master $para2 demosys/
export NODE_OPTIONS=--max-old-space-size=4096
cd demosys/
mvn clean package -Pweb
cd demo-app/demo-app-web
mvn -Pweb docker:build
mvn -Pweb docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/demo-app-web.yaml iBizDemo --with-registry-auth
</command>
</hudson.tasks.Shell>
</builders>
......
......@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /demo-app-web.jar
EXPOSE 51001
EXPOSE 8080
ADD demo-app-web.jar /demo-app-web.jar
......@@ -3,24 +3,9 @@ services:
demo-app-web:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/demo-app-web:latest
ports:
- "51001:51001"
- "8080:8080"
networks:
- agent_network
environment:
- SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.240.110
- SERVER_PORT=51001
- 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_df847bdfd
- SPRING_DATASOURCE_PASSWORD=3d6@460A
- SPRING_DATASOURCE_URL=jdbc:mysql://172.16.186.185:3306/a_LAB01_df847bdfd?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_df847bdfd
- NACOS=172.16.240.110:8848
- SEATA_REGISTRY_NACOS_SERVER-ADDR=172.16.240.110:8848
- SEATA_ENABLED=true
deploy:
resources:
limits:
......
......@@ -8,57 +8,57 @@ zuul:
path: /wfcore/**
serviceId: ${ibiz.ref.service.wf:ibzwf-api}
stripPrefix: true
loginv7:
path: /v7/login
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
changepwd:
path: /v7/changepwd
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
uaa:
path: /uaa/**
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
config:
path: /configs/**
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
oucore:
path: /ibzorganizations/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
oudict:
path: /dictionarys/**/Ibzou**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
ou:
path: /ibzdepartments/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
uaadict:
path: /dictionarys/**/SysOperator
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
dict:
path: /dictionarys/**
serviceId: ${ibiz.ref.service.dict:ibzdict-api}
stripPrefix: false
disk:
path: /net-disk/**
serviceId: ${ibiz.ref.service.disk:ibzdisk-api}
stripPrefix: false
ou_sys_org:
path: /sysorganizations/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
ou_sys_dept:
path: /sysdepartments/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
lite-core:
path: /lite/**
serviceId: ${ibiz.ref.service.lite:ibzlite-api}
stripPrefix: false
loginv7:
path: /v7/login
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
changepwd:
path: /v7/changepwd
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
uaa:
path: /uaa/**
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
config:
path: /configs/**
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
oucore:
path: /ibzorganizations/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
oudict:
path: /dictionarys/**/Ibzou**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
ou:
path: /ibzdepartments/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
uaadict:
path: /dictionarys/**/SysOperator
serviceId: ${ibiz.ref.service.uaa:ibzuaa-api}
stripPrefix: false
dict:
path: /dictionarys/**
serviceId: ${ibiz.ref.service.dict:ibzdict-api}
stripPrefix: false
disk:
path: /net-disk/**
serviceId: ${ibiz.ref.service.disk:ibzdisk-api}
stripPrefix: false
ou_sys_org:
path: /sysorganizations/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
ou_sys_dept:
path: /sysdepartments/**
serviceId: ${ibiz.ref.service.ou:ibzou-api}
stripPrefix: false
lite-core:
path: /lite/**
serviceId: ${ibiz.ref.service.lite:ibzlite-api}
stripPrefix: false
sensitive-headers:
- Cookie,Set-Cookie,Authorization
......@@ -263,6 +263,20 @@ public class IBIZSample0001 extends EntityMP implements Serializable {
@JSONField(name = "createdate" , format="yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
/**
* 大整型
*/
@TableField(value = "field")
@JSONField(name = "field")
@JsonProperty("field")
private Long field;
/**
* 大数值
*/
@TableField(value = "field2")
@JSONField(name = "field2")
@JsonProperty("field2")
private BigDecimal field2;
......@@ -496,6 +510,22 @@ public class IBIZSample0001 extends EntityMP implements Serializable {
this.modify("ibizsample0001name",ibizsample0001name);
}
/**
* 设置 [大整型]
*/
public void setField(Long field){
this.field = field ;
this.modify("field",field);
}
/**
* 设置 [大数值]
*/
public void setField2(BigDecimal field2){
this.field2 = field2 ;
this.modify("field2",field2);
}
/**
* 复制当前对象数据到目标对象(粘贴重置)
......
......@@ -134,7 +134,7 @@
<!--输出实体[IBIZORDER]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-7-8">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-10-8">
<createTable tableName="T_IBIZORDER">
<column name="TP" remarks="" type="TEXT(1048576)">
</column>
......@@ -316,7 +316,7 @@
<!--输出实体[IBIZSAMPLE0001]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0001-18-13">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0001-24-13">
<createTable tableName="T_IBIZSAMPLE0001">
<column name="FIELD01" remarks="" type="VARCHAR(100)">
</column>
......@@ -379,6 +379,10 @@
</column>
<column name="CREATEDATE" remarks="" type="DATETIME">
</column>
<column name="FIELD" remarks="" type="BIGINT">
</column>
<column name="FIELD2" remarks="" type="DECIMAL(38,2)">
</column>
</createTable>
</changeSet>
......
......@@ -37,7 +37,7 @@
</createView>
</changeSet>
<!--输出实体[IBIZORDER]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-7-8" runOnChange="true">
<changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-10-8" runOnChange="true">
<createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZORDER">
<![CDATA[ SELECT t1.[AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[DETAILNUM], t1.[IBIZCUSTOMERID], t11.[IBIZCUSTOMERNAME], t1.[IBIZORDERID], t1.[IBIZORDERNAME], t1.[MEMO], t1.[ORDERSTATE], t1.[ORDERTIME], t1.[ORDERTYPE], t1.[ORDERUID], t1.[UPDATEDATE], t1.[UPDATEMAN], t1.[WFINSTANCEID], t1.[WFSTATE], t1.[WFSTEP] FROM [T_IBIZORDER] t1 LEFT JOIN T_IBIZCUSTOMER t11 ON t1.IBIZCUSTOMERID = t11.IBIZCUSTOMERID ]]>
</createView>
......@@ -67,7 +67,7 @@
</createView>
</changeSet>
<!--输出实体[IBIZSAMPLE0001]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet author="a_LAB01_df847bdfd" id="view-ibizsample0001-18-13" runOnChange="true">
<changeSet author="a_LAB01_df847bdfd" id="view-ibizsample0001-24-13" runOnChange="true">
<createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZSAMPLE0001">
<![CDATA[ SELECT t1.[CREATEDATE], t1.[CREATEMAN], t1.[FIELD01], t1.[FIELD02], t1.[FIELD05], t1.[FIELD06], t1.[FIELD07], t1.[FIELD08], t1.[FIELD09], t1.[FIELD10], t1.[FIELD11], t1.[FIELD12], t1.[FIELD13], t1.[FIELD14], t1.[FIELD15], t1.[FIELD16], t1.[FIELD17], t1.[FIELD18], t1.[FIELD19], t1.[FIELD20], t1.[FIELD21], t1.[FIELD22], t1.[FIELD23], t1.[FIELD24], t1.[FIELD25], t1.[FIELD26], t1.[FIELD27], t1.[IBIZSAMPLE0001ID], t1.[IBIZSAMPLE0001NAME], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZSAMPLE0001] t1 ]]>
</createView>
......
......@@ -49,7 +49,7 @@
</sql>
<!--数据查询[Default]-->
<sql id="Default" databaseId="mysql">
<![CDATA[ SELECT t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`FIELD01`, t1.`FIELD02`, t1.`FIELD05`, t1.`FIELD06`, t1.`FIELD07`, t1.`FIELD08`, t1.`FIELD09`, t1.`FIELD10`, t1.`FIELD11`, t1.`FIELD12`, t1.`FIELD13`, t1.`FIELD14`, t1.`FIELD15`, t1.`FIELD16`, t1.`FIELD17`, t1.`FIELD18`, t1.`FIELD19`, t1.`FIELD20`, t1.`FIELD21`, t1.`FIELD22`, t1.`FIELD24`, t1.`FIELD27`, t1.`IBIZSAMPLE0001ID`, t1.`IBIZSAMPLE0001NAME`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `T_IBIZSAMPLE0001` t1
<![CDATA[ SELECT t1.`CREATEDATE`, t1.`CREATEMAN`, t1.`FIELD`, t1.`FIELD01`, t1.`FIELD02`, t1.`FIELD05`, t1.`FIELD06`, t1.`FIELD07`, t1.`FIELD08`, t1.`FIELD09`, t1.`FIELD10`, t1.`FIELD11`, t1.`FIELD12`, t1.`FIELD13`, t1.`FIELD14`, t1.`FIELD15`, t1.`FIELD16`, t1.`FIELD17`, t1.`FIELD18`, t1.`FIELD19`, t1.`FIELD2`, t1.`FIELD20`, t1.`FIELD21`, t1.`FIELD22`, t1.`FIELD24`, t1.`FIELD27`, t1.`IBIZSAMPLE0001ID`, t1.`IBIZSAMPLE0001NAME`, t1.`UPDATEDATE`, t1.`UPDATEMAN` FROM `T_IBIZSAMPLE0001` t1
]]>
</sql>
<!--数据查询[Default]-->
......
......@@ -2774,6 +2774,33 @@
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"FIELD" ,
"codename":"Field",
"field_logic_name":"大整型",
"entity_name":"IBIZSample0001",
"field_type":"BIGINT",
"nullable":1,
"physical_field":1,
"data_type":"BIGINT",
"data_length":20,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"FIELD2" ,
"codename":"Field2",
"field_logic_name":"大数值",
"entity_name":"IBIZSample0001",
"field_type":"BIGDECIMAL",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"key_field":0,
"show_order":1000,
"major_field":0
}
],
"subEntitys":[
......
......@@ -331,6 +331,28 @@
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>4.6.0</version>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itextasian</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.8.6</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.4</version>
</dependency>
</dependencies>
</project>
......@@ -289,6 +289,23 @@ public class IBIZSample0001DTO extends DTOBase implements Serializable {
@JsonProperty("createdate")
private Timestamp createdate;
/**
* 属性 [FIELD]
*
*/
@JSONField(name = "field")
@JsonProperty("field")
@JsonSerialize(using = ToStringSerializer.class)
private Long field;
/**
* 属性 [FIELD2]
*
*/
@JSONField(name = "field2")
@JsonProperty("field2")
private BigDecimal field2;
/**
* 设置 [FIELD01]
......@@ -490,6 +507,22 @@ public class IBIZSample0001DTO extends DTOBase implements Serializable {
this.modify("ibizsample0001name",ibizsample0001name);
}
/**
* 设置 [FIELD]
*/
public void setField(Long field){
this.field = field ;
this.modify("field",field);
}
/**
* 设置 [FIELD2]
*/
public void setField2(BigDecimal field2){
this.field2 = field2 ;
this.modify("field2",field2);
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册