Commit 749d36f6 by 高晓磊

文件共享工程提交

parent 1e82e34f
......@@ -147,7 +147,8 @@ dependencies {
compile "com.beecode:xyst.dinas.price:${inzVersion}"
compile "com.beecode:xyst.dinas.transport:${inzVersion}"
compile "com.beecode:xyst.dinas.safe:${inzVersion}"
compile "com.beecode:xyst.dinas.sales:${inzVersion}"
compile "com.beecode:xyst.dinas.fileshared:${inzVersion}"
compile "com.beecode:xyst.dinas.sales:${inzVersion}"
compile "com.beecode:xyst.dinas.statistics:${inzVersion}"
compile "com.beecode:xyst.dinas.finance:${inzVersion}"
providedRuntime lib.spring_boot_starter_tomcat
......
......@@ -144,6 +144,7 @@ includeBuild("../") {
substitute module('com.beecode:xyst.dinas.price') with project(':xyst.dinas.price')
substitute module('com.beecode:xyst.dinas.transport') with project(':xyst.dinas.transport')
substitute module('com.beecode:xyst.dinas.safe') with project(':xyst.dinas.safe')
substitute module('com.beecode:xyst.dinas.fileshared') with project(':xyst.dinas.fileshared')
substitute module('com.beecode:xyst.dinas.sales') with project(':xyst.dinas.sales')
substitute module('com.beecode:xyst.dinas.statistics') with project(':xyst.dinas.statistics')
}
......
......@@ -19,11 +19,10 @@ includeBuild("../") {
substitute module('com.beecode:xyst.dinas.camera') with project(':xyst.dinas.camera')
substitute module('com.beecode:xyst.dinas.price') with project(':xyst.dinas.price')
substitute module('com.beecode:xyst.dinas.safe') with project(':xyst.dinas.safe')
substitute module('com.beecode:xyst.dinas.fileshared') with project(':xyst.dinas.fileshared')
substitute module('com.beecode:xyst.dinas.transport') with project(':xyst.dinas.transport')
substitute module('com.beecode:xyst.dinas.sales') with project(':xyst.dinas.sales')
substitute module('com.beecode:xyst.dinas.finance') with project(':xyst.dinas.finance')
substitute module('com.beecode:xyst.dinas.statistics') with project(':xyst.dinas.statistics')
}
}
......@@ -88,7 +88,7 @@
<dependency>com.xyst.dinas.biz.auth.SandMiningAreaList</dependency>
<dependency>com.xyst.dinas.biz.auth.SandMiningAreaCheckList</dependency>
<dependency>com.xyst.dinas.camera.auth.CameraInfoList</dependency>
<dependency>com.xyst.dinas.fileshared.auth.FilesharedList</dependency>
<content>
<m:function-tree>
<m:parent></m:parent>
......@@ -1699,7 +1699,34 @@
</m:children>
</m:function-node>
<m:function-node>
<m:id>99c1c764-dd1b-4441-90df-f115e1852ad6</m:id>
<m:name>fileshared</m:name>
<m:title>文件共享</m:title>
<m:index>13000</m:index>
<m:license></m:license>
<m:privilege></m:privilege>
<m:function-definition>
<m:view>functions</m:view>
<m:view-config></m:view-config>
</m:function-definition>
<m:children>
<m:function-node>
<m:id>77210119-292b-421b-a48a-dbfd1d1eb155</m:id>
<m:name>fileshared_list</m:name>
<m:title>文件共享</m:title>
<m:index>1000</m:index>
<m:license></m:license>
<m:privilege>com.xyst.dinas.fileshared.auth.FilesharedList</m:privilege>
<m:role></m:role>
<m:function-definition>
<m:view>function-fileshared-list</m:view>
<m:view-config></m:view-config>
</m:function-definition>
<m:icon>iconfont iconhetongzhihangfenxi1x</m:icon>
</m:function-node>
</m:children>
</m:function-node>
</m:function-tree>
</content>
</metadata>
\ No newline at end of file
......@@ -149,3 +149,4 @@ include "xyst.dinas.sales"
include "xyst.dinas.transport"
include "xyst.dinas.statistics"
include "xyst.dinas.safe"
include "xyst.dinas.fileshared"
......@@ -18,6 +18,7 @@ include "xyst.dinas.camera"
include "xyst.dinas.price"
include "xyst.dinas.transport"
include "xyst.dinas.safe"
include "xyst.dinas.fileshared"
include "xyst.dinas.sales"
include "xyst.dinas.finance"
include "xyst.dinas.statistics"
......
dependencies {
compile lib.bcp_import
compile lib.bcp_type
compile lib.bcp_store
compile lib.hibernate_core
compile lib.spring_web
compile lib.spring_boot_autoconfigure
compile lib.jackson_datatype_jdk8
compile lib.jackson_datatype_jsr310
compile lib.json
compile "com.beecode:bap2.participant:${aminoVersion}"
compile "com.beecode:bcp.org:${aminoVersion}"
compile "com.beecode:bap2.department:${aminoVersion}"
compile "com.beecode:bap2.staff:${aminoVersion}"
compile 'com.deepoove:poi-tl:1.5.0'
compile project(":inz.common")
compile project(":inz.query")
compile project(":inz.workflow")
compile project(":inz.basis")
compile project(":inz.authentication")
compile project(":xyst.dinas.biz")
compile project(":xyst.dinas.price")
compile project(":xyst.dinas.safe")
compile project(":xyst.dinas.transport")
compile project(":xyst.dinas.project")
compile project(":xyst.dinas.production")
compile project(":xyst.dinas.sales")
compile project(":xyst.dinas.finance")
testCompile lib.amino_boot_web
testCompile lib.mysql_connector
}
rootProject.name = 'xyst.dinas.fileshared'
\ No newline at end of file
package com.xyst.dinas.fileshared.config;
import com.beecode.amino.metadata.runtime.MetadataMech;
import com.beecode.bcp.type.KClass;
import com.beecode.bcp.type.TypeConstants;
import com.xyst.dinas.fileshared.constant.FileSharedSettingConstant;
import com.xyst.dinas.fileshared.dao.FileSharedSettingDao;
import com.xyst.dinas.fileshared.internal.dao.FileSharedSettingDaoImpl;
import com.xyst.dinas.fileshared.internal.service.FileSharedSettingServiceImpl;
import com.xyst.dinas.fileshared.service.FileSharedSettingService;
import com.xyst.dinas.fileshared.web.FileSharedSettingController;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.core.io.ClassPathResource;
public class FileSharedSettingConfiguration {
//
// @Autowired
// @Qualifier(TypeConstants.CLASS_MECH)
// private MetadataMech<KClass> typeMech;
// @Bean(FileSharedSettingConstant.ENTITY)
// public KClass fileSharedEntity() {
// return typeMech.createStaticBeanByResource(
// new ClassPathResource("/com/xyst/dinas/fileshared/datamodel/FileSharedSetting.jmx", KClass.class));
// }
//FileSharedSettingDao相关bean配置
@Bean
public FileSharedSettingDao fileSharedSettingDao() {
return new FileSharedSettingDaoImpl();
}
@Bean
public FileSharedSettingService fileSharedSettingService(){
return new FileSharedSettingServiceImpl();
}
@Bean
public FileSharedSettingController fileSharedSettingController(){
return new FileSharedSettingController();
}
}
package com.xyst.dinas.fileshared.constant;
public interface FileSharedSettingConstant {
/**
* 业务类型名称
*/
String BIZ_TYPE = "FileShared";
/**
* 业务类型标题
*/
String BIZ_TITLE = "文件共享";
/**
* 实体名
*/
String ENTITY = "com.xyst.dinas.fileshared.datamodel.FileSharedSetting";
/**
* 元数据组名称
*/
String METADATA_GROUP_FILE_SHARED = "dinasFileSharedQuery";
}
package com.xyst.dinas.fileshared.dao;
import com.beecode.inz.basis.dao.BaseDao;
public interface FileSharedSettingDao extends BaseDao {
}
package com.xyst.dinas.fileshared.entity;
import java.util.UUID;
/**
* @author scol
*/
public class FolderInfo {
private UUID settingId;
private Integer level;
private Object name;
private String showName;
private String type;
private Integer previousLevel;
private Integer nextLevel;
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public UUID getSettingId() {
return settingId;
}
public void setSettingId(UUID settingId) {
this.settingId = settingId;
}
public Object getName() {
return name;
}
public void setName(Object name) {
this.name = name;
}
public String getShowName() {
return showName;
}
public void setShowName(String showName) {
this.showName = showName;
}
public Integer getPreviousLevel() {
return previousLevel;
}
public void setPreviousLevel(Integer previousLevel) {
this.previousLevel = previousLevel;
}
public Integer getNextLevel() {
return nextLevel;
}
public void setNextLevel(Integer nextLevel) {
this.nextLevel = nextLevel;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public FolderInfo(UUID settingId, Integer level, Object name, String showName, String type, Integer previousLevel, Integer nextLevel) {
this.settingId = settingId;
this.level = level;
this.name = name;
this.showName = showName;
this.type = type;
this.previousLevel = previousLevel;
this.nextLevel = nextLevel;
}
public FolderInfo() {
}
}
package com.xyst.dinas.fileshared.entity;
import java.util.List;
import java.util.UUID;
public class FolderLevelValueSettingReq {
private UUID settingId;
private List<LevelValuesReq> levelList;
public UUID getSettingId() {
return settingId;
}
public void setSettingId(UUID settingId) {
this.settingId = settingId;
}
public List<LevelValuesReq> getLevelList() {
return levelList;
}
public void setLevelList(List<LevelValuesReq> levelList) {
this.levelList = levelList;
}
}
package com.xyst.dinas.fileshared.entity;
import java.util.List;
/**
* @author scol
*/
public class LevelValues {
private String name;
private String showName;
private String type;
private Integer level;
private String format;
private Object value;
private List<ValueFormat> valueFormatList;
public String getShowName() {
return showName;
}
public void setShowName(String showName) {
this.showName = showName;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public List<ValueFormat> getParamValueFormatList() {
return valueFormatList;
}
public void setParamValueFormatList(List<ValueFormat> valueFormatList) {
this.valueFormatList = valueFormatList;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}
package com.xyst.dinas.fileshared.entity;
public class LevelValuesReq {
private Integer level;
private Object value;
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}
package com.xyst.dinas.fileshared.entity;
public class ValueFormat {
private Object value;
private String format;
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public ValueFormat() {
}
public ValueFormat(Object value, String format) {
this.value = value;
this.format = format;
}
}
\ No newline at end of file
package com.xyst.dinas.fileshared.internal.dao;
import com.beecode.inz.basis.internal.dao.AbstractBaseDao;
import com.xyst.dinas.fileshared.constant.FileSharedSettingConstant;
import com.xyst.dinas.fileshared.dao.FileSharedSettingDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate5.HibernateTemplate;
public class FileSharedSettingDaoImpl extends AbstractBaseDao implements FileSharedSettingDao, FileSharedSettingConstant {
@Autowired
private HibernateTemplate template;
/**
* 抽象方法,需要实现类提供HibernateTemplate
*
* @return
*/
@Override
protected HibernateTemplate getHibernateTemplate() {
return template;
}
/**
* 抽象方法,需要实现类提供当前ModelName
*
* @return
*/
@Override
protected String getModelName() {
return ENTITY;
}
}
package com.xyst.dinas.fileshared.service;
import com.beecode.bap.attachment.AttachmentInfo;
import com.beecode.inz.query.entity.RowData;
import com.beecode.inz.query.exception.QueryException;
import com.xyst.dinas.fileshared.entity.FolderInfo;
import com.xyst.dinas.fileshared.entity.FolderLevelValueSettingReq;
import java.text.ParseException;
import java.util.List;
public interface FileSharedSettingService {
List<FolderInfo> getFirstFolderList();
List<FolderInfo> getFolderInfoList(FolderLevelValueSettingReq folderLevelValueSetting) throws QueryException, ParseException;
List<RowData> getThisListByDist(FolderLevelValueSettingReq folderLevelValueSetting) throws QueryException, ParseException;
List<RowData> getJoinListByDist(FolderLevelValueSettingReq folderLevelValueSetting) throws QueryException, ParseException;
List<AttachmentInfo> getFileList(FolderLevelValueSettingReq folderLevelValueSetting) throws QueryException, ParseException;
}
package com.xyst.dinas.fileshared.web;
import com.beecode.amino.core.Amino;
import com.beecode.amino.metadata.Metadata;
import com.beecode.bap.attachment.AttachmentInfo;
import com.beecode.inz.basis.team.pojo.ResponseObj;
import com.beecode.inz.query.entity.RowData;
import com.beecode.inz.query.exception.QueryException;
import com.xyst.dinas.fileshared.entity.FolderInfo;
import com.xyst.dinas.fileshared.entity.FolderLevelValueSettingReq;
import com.xyst.dinas.fileshared.entity.ValueFormat;
import com.xyst.dinas.fileshared.service.FileSharedSettingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.text.ParseException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
@RestController()
@RequestMapping(value = "fileShared/fileShared")
public class FileSharedSettingController {
@Autowired
private FileSharedSettingService fileSharedSettingService;
@GetMapping("getAllFileSharedQueryMeteData")
public ResponseObj<List<ValueFormat>> getAllFileSharedQueryMeteData() {
Set<Metadata> dinasFileSharedQuery = Amino.getApplicationMetadataContext().getMetadataDefinitions();
List<ValueFormat> collect1 = dinasFileSharedQuery.stream().filter(metadata -> metadata.getName().startsWith("com.xyst.dinas.fileshared.query") && metadata.getName().contains(".query."))
.map(metadata -> new ValueFormat(metadata.getName(), metadata.getDescription())).collect(Collectors.toList());
return ResponseObj.response(200, "查询成功", collect1);
}
@PostMapping("getAllFolderByDictId")
public ResponseObj<List<FolderInfo>> getAllFirstFolderByDict(
@RequestBody(required = false) FolderLevelValueSettingReq folderLevelValueSetting
) {
//第一级文件夹必须是fileSharedSetting表中的showName
//第二到N级文件夹根据字段名称来,用配置的方式,除了时间可能需要重组格式外,别的字段都不需要分组
List<FolderInfo> folderList = null;
if (null == folderLevelValueSetting || null == folderLevelValueSetting.getSettingId() || null == folderLevelValueSetting.getLevelList()) {
folderList = fileSharedSettingService.getFirstFolderList();
} else {
try {
folderList = fileSharedSettingService.getFolderInfoList(folderLevelValueSetting);
} catch (QueryException | ParseException e) {
e.printStackTrace();
return ResponseObj.response(500, "查询失败", null);
}
}
return ResponseObj.response(200, "查询成功", folderList);
}
@PostMapping("getThisListByDist")
public ResponseObj<List<RowData>> getThisListByDist(
@RequestBody(required = false) FolderLevelValueSettingReq folderLevelValueSetting
) {
//第一级文件夹必须是fileSharedSetting表中的showName (命名为第0级)
//第二到N级文件夹根据字段名称来,用配置的方式,除了时间可能需要重组格式外,别的字段都不需要分组 (命名为第1-N级)
List<RowData> folderList = null;
try {
folderList = fileSharedSettingService.getThisListByDist(folderLevelValueSetting);
return ResponseObj.response(200, "查询成功", folderList);
} catch (QueryException | ParseException e) {
e.printStackTrace();
}
return ResponseObj.response(500, "查询出错", folderList);
}
@PostMapping("getJoinListByDist")
public ResponseObj<List<RowData>> getJoinListByDist(
@RequestBody(required = false) FolderLevelValueSettingReq folderLevelValueSetting
) {
//第一级文件夹必须是fileSharedSetting表中的showName (命名为第0级)
//第二到N级文件夹根据字段名称来,用配置的方式,除了时间可能需要重组格式外,别的字段都不需要分组 (命名为第1-N级)
List<RowData> folderList = null;
try {
folderList = fileSharedSettingService.getJoinListByDist(folderLevelValueSetting);
return ResponseObj.response(200, "查询成功", folderList);
} catch (QueryException | ParseException e) {
e.printStackTrace();
}
return ResponseObj.response(500, "查询出错", folderList);
}
@PostMapping("getFileList")
public ResponseObj<List<AttachmentInfo>> getFileList(
@RequestBody(required = false) FolderLevelValueSettingReq folderLevelValueSetting
) {
//第一级文件夹必须是fileSharedSetting表中的showName (命名为第0级)
//第二到N级文件夹根据字段名称来,用配置的方式,除了时间可能需要重组格式外,别的字段都不需要分组 (命名为第1-N级)
List<AttachmentInfo> folderList = null;
try {
folderList = fileSharedSettingService.getFileList(folderLevelValueSetting);
return ResponseObj.response(200, "查询成功", folderList);
} catch (QueryException | ParseException e) {
e.printStackTrace();
}
return ResponseObj.response(500, "查询出错", folderList);
}
}
<model>
<header>
<type>bcp.authz.Privilege</type>
<package>com.xyst.dinas.fileshared.auth</package>
<name>FilesharedList</name>
<title>列表</title>
<tags></tags>
<description></description>
</header>
<content>
<privilege type='TOKEN' target-type='' id='f24ebc96-d7be-43d6-8d8a-d3c85da98802' category='文件共享/文件共享(集团)' seq='0'></privilege>
</content>
</model>
\ No newline at end of file
<model>
<header>
<type>bcp.type.DataModel</type>
<package>com.xyst.dinas.fileshared.datamodel</package>
<title>文件共享设置表</title>
<name>FileSharedSetting</name>
<description>文件共享设置表</description>
<templateName>mk.ide.ui.editor.data.model.template.common</templateName>
<tablePrefix>xyst_dinas_</tablePrefix>
</header>
<content>
<dataModel id='a6523b8a-a091-4255-8140-c15355867d99' multiVersion='undefined' domainInherit='undefined' tableName='xyst_dinas_file_shared_setting'>
<parent>com.beecode.bcp.dict.datamodel.BasicDictRequirement</parent>
<attribute id='003d945f-0212-4b32-9684-5db91eda480e' name="metadataName" columnName='metadata_name' title='元数据名称' type='string' default='' precision='' isArray='false'>
<annotation id='229b83db-cc93-407f-a78e-f40d07b4d13a' attributeId='bc939a2f-02aa-4b3d-8305-6d9e8e77a2d0' name='length' value='100'>
</annotation>
</attribute>
<attribute id='5ba2c4a7-2ce5-460d-bd42-a29c4b29681f' name="showName" columnName='show_name' title='展示名称' type='string' default='' precision='' isArray='false'>
<annotation id='5cf40f26-cd1a-423c-9fe9-32e449ae2fc4' attributeId='6094802b-b826-447f-83d2-c7196aa64e28' name='length' value='100'>
</annotation>
</attribute>
<attribute id='cdb5b4c9-0de2-433e-a309-a1c86194ad51' name='conditions' columnName='conditions' title='查询条件json' type='string' default='' precision='' isArray='false'>
<annotation id='4b6f5979-09b9-4fab-9346-41c198807e17' attributeId='343e9444-d4d9-402d-8fd2-23b648c1e8cf' name='length' value='1000'>
</annotation>
</attribute>
<attribute id='d8acfcaf-8dbf-47cf-aac1-280300d05efe' name='folderGroup' columnName='folder_group' title='分组json' type='string' default='' precision='' isArray='false'>
<annotation id='372b8f57-1dfb-4e6a-9da1-f9492c11d76b' attributeId='abbb1530-2201-4be1-b90a-be63024e200b' name='length' value='1000'>
</annotation>
</attribute>
<attribute id='5038ae6e-33db-46f1-ad47-019f6331d2fa' name='joinMetadata' columnName='join_metadata' title='被关联的表' type='string' default='' precision='' isArray='false'>
<annotation id='152d971c-5623-4358-a47e-6cce2ae40656' attributeId='ea0c9591-e3b8-4fb1-bde0-7a4b87237f18' name='length' value='1000'>
</annotation>
</attribute>
<attribute id='8e98bbf0-ce9c-4c9b-a422-5903c1dd4629' name='masterFiled' columnName='master_filed' title='主表用哪个字段关联' type='string' default='' precision='' isArray='false'>
<annotation id='f11331a8-2229-449e-9253-c92ecaff0657' attributeId='19df38bf-398e-45a7-a32a-4927ebc58525' name='length' value='1000'>
</annotation>
</attribute>
<attribute id='b3b0ad8f-b9cb-4474-b273-a6a707a41d89' name='joinFiled' columnName='join_filed' title='被关联的表用哪个字段关联' type='string' default='' precision='' isArray='false'>
<annotation id='cc940f81-39ef-4a56-a40d-a96f1fe86221' attributeId='28ba612d-2e3a-4215-a0bd-a967a779aa41' name='length' value='1000'>
</annotation>
</attribute>
<attribute id='a080ed99-a92c-4cfa-84c0-ade6ee141919' name='canShowInList' columnName='can_show_in_list' title='能否在列表上展示' type='boolean' default='' precision='' isArray='false'>
<annotation id='835ff6b1-a9cc-4bb1-90e7-1e7358c0503f' attributeId='0c79e442-895a-4a90-8975-0489a8fc3e36' name='length' value='1'>
</annotation>
</attribute>
<hibernate>/xyst.dinas.fileshared/src/main/resources/config/FileSharedSetting.hbm.xml</hibernate>
</dataModel>
</content>
</model>
<model>
<header>
<type>bcp.dict.Dict</type>
<package>com.xyst.dinas.fileshared.datamodel.dict</package>
<name>FileSharedSettingDict</name>
<title>文件共享设置</title>
<tags></tags>
<description></description>
</header>
<content>
<dict id='4559ac69-6a96-47e0-94ba-ebbb58d47bee' listid='c8003a47-6c66-4822-9f81-3d2154856511'>
<type>com.xyst.dinas.fileshared.datamodel.FileSharedSetting</type>
<config>
<structure>list</structure>
<code-rule></code-rule>
</config>
</dict>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ArtificialRecharge</name>
<title>人工充值</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='1b47a7c5-b121-4a57-99d6-e4553814e411'>
<kclass>com.xyst.dinas.finance.datamodel.ArtificialRecharge</kclass>
<dataProcessor></dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>327ecbe5-4bf2-4413-b827-e42a1b214973</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>2cce4f67-9270-4720-ac62-1b098c6d6ae7</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区域公司'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='区域公司name'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='购砂单位'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='购砂单位name'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='项目'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='合同'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description></description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='资金类型'>
<name>fundType</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='充值金额'>
<name>rechargeAmount</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='备注'>
<name>remark</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建人'>
<name>creator.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改人'>
<name>modifier.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>Contract</name>
<title>合同</title>
<tags></tags>
<description>合同管理</description>
</header>
<content>
<customQuery id='597766d7-4a23-4021-8d8e-b5b027be4470'>
<kclass>com.xyst.dinas.contract.datamodel.Contract</kclass>
<dataProcessor>com.xyst.dinas.contract.query.processor.ContractInfoProcessor</dataProcessor>
<innerScene title='全部'>
<id>7e052f69-0611-405e-96c7-0117e6338b54</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>b015bf27-9ad3-44a5-82b8-6f862ddee0b6</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='合同唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>合同唯一主键编码</description>
</field>
<field title='项目唯一主键编码'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目唯一主键编码</description>
</field>
<field title='项目编号'>
<name>project.projectNum</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目编号</description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目名称</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>区域公司名称</description>
</field>
<field title='购砂单位唯一主键编码'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description>购砂单位唯一主键编码</description>
</field>
<field title='购砂单位名称'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<description>购砂单位名称</description>
</field>
<field title='合同名称'>
<name>contractName</name>
<type>string</type>
<description>合同名称</description>
</field>
<field title='合同编号'>
<name>contractCode</name>
<type>string</type>
<description>合同编号</description>
</field>
<field title='合同状态'>
<name>contractState</name>
<type>string</type>
<description>合同状态 UN_EXECUTE未执行 EXECUTING执行中 COMPLETED已完成 MODIFIED 已变更</description>
</field>
<field title='审批状态'>
<name>approveState</name>
<type>string</type>
<description>审批状态 0未提交 1审批中 2已通过 3已驳回</description>
</field>
<field title='合同版本号'>
<name>contractVersion</name>
<type>string</type>
<description>合同版本号</description>
</field>
<field title='收货地址'>
<name>addrReceive</name>
<type>string</type>
<description>收货地址</description>
</field>
<field title='合同签订联系人'>
<name>contacts</name>
<type>string</type>
<description>合同签订联系人</description>
</field>
<field title='联系方式'>
<name>phoneNumber</name>
<type>string</type>
<description>联系方式</description>
</field>
<field title='合同签订时间'>
<name>signDate</name>
<type>datetime</type>
<description>合同签订时间</description>
</field>
<field title='合同开始时间'>
<name>startDate</name>
<type>datetime</type>
<description>合同开始时间</description>
</field>
<field title='合同结束时间'>
<name>endDate</name>
<type>datetime</type>
<description>合同结束时间</description>
</field>
<field title='销售总额'>
<name>saleAmount</name>
<type>fixnum</type>
<description></description>
</field>
<field title='销售总量'>
<name>saleDinasAmount</name>
<type>fixnum</type>
<description></description>
</field>
<field title='备注'>
<name>memo</name>
<type>string</type>
<description></description>
</field>
<field title='场站名称'>
<name>station.stationName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.Station</name>
</ref>
<description>场站名称</description>
</field>
<field title='场站唯一主键'>
<name>station.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.Station</name>
</ref>
<description>场站唯一主键</description>
</field>
<field title='是否生效'>
<name>valid</name>
<type>boolean</type>
<description>是否生效 true生效 false不生效</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>Discharging</name>
<title>接驳</title>
<tags/>
<description>接驳</description>
</header>
<content>
<customQuery id='f5b93f4e-b381-4dfb-8a47-1dc7947d7c0c'>
<kclass>com.xyst.dinas.production.datamodel.Discharging</kclass>
<innerScene title='全部'>
<id>3178c7bf-6759-4806-ba11-e2b0690d6823</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<innerScene title='已废弃'>
<id>59492dc1-cbe4-404b-be39-118836604b39</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<field title='接驳唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<description>创建时间</description>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='所属采区唯一主键编码'>
<name>sandMiningArea.id</name>
<description>采砂区域</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.SandMiningArea</name>
<type></type>
</ref>
</field>
<field title='所属采区名称'>
<name>sandMiningArea.sandMiningAreaName</name>
<description>所属采区名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.SandMiningArea</name>
<type></type>
</ref>
</field>
<field title='上岸时间'>
<name>dischargingTime</name>
<description>上岸时间</description>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='采砂区域类型'>
<name>sandMiningArea.sandMiningAreaType</name>
<description>采区类型 0流域 1可采区 2禁采区 3保留区 4综合弃沙区</description>
<type>int</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.SandMiningArea</name>
<type></type>
</ref>
</field>
<field title='所属场站唯一主键编码'>
<name>station.id</name>
<description>所属场站唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type></type>
</ref>
</field>
<field title='场站名称'>
<name>station.stationName</name>
<description>场站名称</description>
<type>name</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type></type>
</ref>
</field>
<field title='所属采砂船唯一主键编码'>
<name>sandMiningShip.id</name>
<description>采砂船</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.ShipInfo</name>
<type/>
</ref>
</field>
<field title='采砂船编号'>
<name>sandMiningShip.shipCodeNum</name>
<description>采砂船编号</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.ShipInfo</name>
<type></type>
</ref>
</field>
<field title='所属运砂船唯一主键编码'>
<name>transportShip.id</name>
<description>运砂船</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.ShipInfo</name>
<type></type>
</ref>
</field>
<field title='运砂船编号'>
<name>transportShip.shipCodeNum</name>
<description>运砂船编号</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.ShipInfo</name>
<type></type>
</ref>
</field>
<field title='上岸砂石量'>
<name>dischargingWeight</name>
<description>上岸砂石量</description>
<type>fixnum</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='接驳人员'>
<name>dischargingRegistrant</name>
<description>接驳人员</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='数据类型'>
<name>type</name>
<description>数据类型 0每日新增 1修正数据</description>
<type>int</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<description>是否删除 0不删除 1删除</description>
<type>boolean</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='所属修正记录唯一主键编码'>
<name>parentId</name>
<description>每日新增数据对应所在月的修正数据唯一主键编码</description>
<type>uuid</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ExpenseAdjust</name>
<title>费用调整</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='a21f0532-a280-465f-9ef6-95ebb4f44a87'>
<kclass>com.xyst.dinas.finance.datamodel.ExpenseAdjust</kclass>
<dataProcessor></dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>ef51b666-c8cf-45ec-865c-d52226e38df0</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>b44d6614-9cbc-43c3-9681-beec380b555e</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区域公司'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='区域公司name'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='购砂单位'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='购砂单位name'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='项目'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='合同'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description></description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='资金类型'>
<name>fundType</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='费用调整金额'>
<name>expenseAdjustAmount</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='备注'>
<name>remark</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建人'>
<name>creator.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改人'>
<name>modifier.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>FinanceRefund</name>
<title>财务退款</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='bb49e1ae-2930-4b82-ab98-2cd6f8b06953'>
<kclass>com.xyst.dinas.finance.datamodel.FinanceRefund</kclass>
<dataProcessor>com.xyst.dinas.finance.processor.FinanceRefundProcessor</dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>683d5fe7-feac-4853-bdbd-955519e1bac5</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>0db743b3-6173-41a6-ad26-e3e4ebdc26f2</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='购砂单位'>
<name>purchaseSandCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='购砂单位名称'>
<name>purchaseSandCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='退款状态'>
<name>refundState</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='申请人'>
<name>applicant</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='申请时间'>
<name>applyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='项目'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='项目名称'>
<name>projectName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='合同'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description></description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='资金类型'>
<name>fundType</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='申请退费金额'>
<name>applyRefundAmount</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='实际退费金额'>
<name>actualRefundAmount</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建人'>
<name>creator.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改人'>
<name>modifier.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>NeedPlan</name>
<title>需用计划</title>
<tags></tags>
<description>需用计划</description>
</header>
<content>
<customQuery id='ee9bbb76-1fb2-49e6-9d81-485171a4da1d'>
<kclass>com.xyst.dinas.sales.datamodel.NeedPlan</kclass>
<authorityItem>com.xyst.dinas.sales.auth.NeedPlanList</authorityItem>
<innerScene title='全部'>
<id>8d9beded-8981-40d9-a5f4-d0d087468024</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>3b9b1dd2-7136-48e0-8152-22cedec175aa</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='需用计划唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>需用计划唯一主键编码</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>区域公司名称</description>
</field>
<field title='项目唯一主键编码'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目唯一主键编码</description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目名称</description>
</field>
<field title='合同唯一主键编码'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description>合同唯一主键编码</description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description>合同名称</description>
</field>
<field title='购砂单位唯一主键编码'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description>购砂单位唯一主键编码</description>
</field>
<field title='购砂单位名称'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description>购砂单位名称</description>
</field>
<field title='计划周期唯一主键编码'>
<name>planningCycle.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期唯一主键编码</description>
</field>
<field title='计划周期'>
<name>planningCycle.title</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期</description>
</field>
<field title='计划周期开始时间'>
<name>planningCycle.startTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期结束时间'>
<name>planningCycle.endTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='项目余额'>
<name>projectBalance</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目余额</description>
</field>
<field title='运输方式'>
<name>transportMode</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>运输方式 DELIVERY配送 SELF_EXTRACT自提</description>
</field>
<field title='提交状态'>
<name>submitState</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>提交状态 SUBMITTED已提交 UNSUBMITTED未提交</description>
</field>
<field title='车牌号'>
<name>transportLicensePlateNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>车牌号</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='备注'>
<name>remark</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>PersonnelViolation</name>
<title>人员违规记录</title>
<tags></tags>
<description>人员违规记录</description>
</header>
<content>
<customQuery id='afaf2aa5-167e-470d-8f2d-b769760845c1'>
<kclass>com.xyst.dinas.safe.datamodel.PersonnelViolation</kclass>
<innerScene title='全部'>
<id>267a0792-3221-4be9-a4a7-8b43d867da60</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>e4d2a98f-1043-46b3-ac48-a910a96a25a8</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type/>
<name/>
</ref>
<description/>
</field>
<field title='姓名'>
<name>personnelName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='身份证号'>
<name>idCard</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title="区域公司唯一主键编码">
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title="区域公司名称">
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
<description>区域公司名称</description>
</field>
<field title='违规时间'>
<name>violationDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规描述'>
<name>violationDescription</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规处理结果'>
<name>processResult</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>违规处理结果</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>创建时间</description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>修改时间</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>PriceAdjustment</name>
<title>调价申请</title>
<tags></tags>
<description>调价申请</description>
</header>
<content>
<customQuery id='10a452f1-5f90-4c0b-806d-98ce15bc231c'>
<kclass>com.xyst.dinas.price.datamodel.PriceAdjustment</kclass>
<innerScene title='全部'>
<id>19f6752f-bcae-43b7-93a6-25076064b9a7</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>5b6e583a-1d44-499a-8bc0-66154eeb3c08</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title = '调价申请主键唯一编码'>
<name>id</name>
<type>uuid</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '所属区域公司主键唯一编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title = '所属区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title = '所属场站主键唯一编码'>
<name>station.id</name>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type></type>
</ref>
</field>
<field title = '所属场站名称'>
<name>station.name</name>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type></type>
</ref>
</field>
<field title = '创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '调价时间'>
<name>adjustmentDate</name>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '调价审批时间'>
<name>approvalTime</name>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '是否删除'>
<name>del</name>
<description>是否删除 true是 false否</description>
<type>boolean</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '调价审批状态'>
<name>applyStatus</name>
<description>调价审批状态 0待审批 1审批中 2通过 3不通过</description>
<type>int</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '调价生效状态'>
<name>adjustmentStatus</name>
<description>调价审批状态 0未生效 1生效中 2已结束 3已废弃</description>
<type>int</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ProductionLineViolation</name>
<title>生产违规记录</title>
<tags></tags>
<description>生产违规记录</description>
</header>
<content>
<customQuery id='e1e5c950-b83f-4d99-a849-f4c019e910bc'>
<kclass>com.xyst.dinas.safe.datamodel.ProductionLineViolation</kclass>
<innerScene title='全部'>
<id>477c5157-29f9-4d3c-b28e-ab785cb7671e</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>63b9b028-31e7-4939-a75c-a4b9b1ff6758</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='违规记录唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='生产线唯一主键编码'>
<name>productionLine.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.ProductionLine</name>
</ref>
<description>生产线唯一主键编码</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='生产线名称'>
<name>productionLine.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.ProductionLine</name>
</ref>
<description>生产线名称</description>
</field>
<field title='违规时间'>
<name>violationDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>违规时间</description>
</field>
<field title='违规描述'>
<name>violationDescription</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>违规描述</description>
</field>
<field title='违规处理结果'>
<name>processResult</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>违规处理结果</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>创建时间</description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>修改时间</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ProductionPlanReport</name>
<title>生产计划</title>
<tags/>
<description>生产计划</description>
</header>
<content>
<customQuery id='c9d6c046-043d-4696-ba05-c7319cc66ced'>
<kclass>com.xyst.dinas.production.datamodel.ProductionPlanReport</kclass>
<innerScene title='全部'>
<id>4345d81c-c99d-4f21-945c-567752a69f47</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<innerScene title='已废弃'>
<id>f0c0663d-49a0-43f5-bf53-b76e4e0e046f</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<field title='生产线唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='场站唯一主键编码'>
<name>station.id</name>
<description>场站唯一主键编码</description>
<type>uuid</type>
<ref>
<name>'com.xyst.dinas.biz.datamodel.Station</name>
<type/>
</ref>
</field>
<field title='场站名称'>
<name>station.stationName</name>
<description>场站名称</description>
<type>string</type>
<ref>
<name>'com.xyst.dinas.biz.datamodel.Station</name>
<type/>
</ref>
</field>
<field title='计划上报时间'>
<name>productionPlanDate</name>
<description>计划上报时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='是否已经入库'>
<name>warehousingStatus</name>
<description>是否已经入库 true已入库 false未入库</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ProjectFiled</name>
<title>项目备案</title>
<tags/>
<description>项目备案</description>
</header>
<content>
<customQuery id='eec3dcb2-3291-41d7-bf34-bf7684370b22'>
<kclass>com.xyst.dinas.project.datamodel.ProjectFiled</kclass>
<innerScene title='全部'>
<id>7408c005-0244-4d6c-a436-97dee51ccecb</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>78569709-4874-427a-836f-e3835035d780</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='权限过滤'>
<id>40f264f0-d41a-4450-b090-0719564622db</id>
<javaImplement>com.xyst.dinas.biz.scene.XystDinasCommonAllScene</javaImplement>
<defaultExecute>true</defaultExecute>
<hide>true</hide>
</innerScene>
<field title='项目备案唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目备案唯一主键编码</description>
</field>
<field title='名称'>
<name>projectName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>名称</description>
</field>
<field title='项目类型唯一主键编码'>
<name>projectType.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.dict.datamodel.ProjectType</name>
</ref>
<description>项目类型唯一主键编码</description>
</field>
<field title='项目类型名称'>
<name>projectType.title</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.dict.datamodel.ProjectType</name>
</ref>
<description>项目类型名称</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司名称</description>
</field>
<field title='项目编号'>
<name>projectNum</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目编号</description>
</field>
<field title='项目所在地'>
<name>projectLocation</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目所在地</description>
</field>
<field title='所属省'>
<name>province</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='所属市'>
<name>city</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='所属区'>
<name>district</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='用砂单位'>
<name>useSandComany</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='项目总包方'>
<name>projectGeneralContractor</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>项目总包方</description>
</field>
<field title='联系人'>
<name>contacts</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>联系人</description>
</field>
<field title='联系电话'>
<name>contactNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>联系电话</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='备注'>
<name>remark</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>备注</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>PurchaseSandCompany</name>
<title>购砂单位</title>
<tags></tags>
<description>购砂单位</description>
</header>
<content>
<customQuery id='599d59b1-edef-4b54-b4ec-b040d9a6a469'>
<kclass>com.xyst.dinas.project.datamodel.PurchaseSandCompany</kclass>
<innerScene title='全部'>
<id>601e8c02-7f13-47b5-ad8c-c05f5c60ee3a</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>0ca21b5f-dc29-4679-8615-4fac54bbee34</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='权限过滤'>
<id>377adc8a-e968-4938-8cf9-5461f46d5cfd</id>
<javaImplement>com.xyst.dinas.biz.scene.XystDinasCommonAllScene</javaImplement>
<defaultExecute>true</defaultExecute>
<hide>true</hide>
</innerScene>
<field title='购砂单位唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>购砂单位唯一主键编码</description>
</field>
<field title='名称'>
<name>name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>名称</description>
</field>
<field title='地址'>
<name>address</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>地址</description>
</field>
<field title='联系人'>
<name>contacts</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>联系人</description>
</field>
<field title='联系电话'>
<name>contactNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>联系电话</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司名称</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>创建时间</description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>修改时间</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.finance.query</package>
<name>BankRechargeDetail</name>
<title>银行充值明细</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='0606f47c-5f64-433a-b54a-3e9ea8b04382'>
<kclass>com.xyst.dinas.finance.datamodel.BankRechargeDetail</kclass>
<dataProcessor></dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>6c31ef7b-217e-498e-8981-ff9c954ca591</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>b9778068-4619-4642-affb-2db8b3b05b2d</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='区域公司'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='区域公司name'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description></description>
</field>
<field title='购砂单位'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='购砂单位name'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description></description>
</field>
<field title='项目'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description></description>
</field>
<field title='合同'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description></description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='资金类型'>
<name>fundType</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='充值金额'>
<name>rechargeAmount</name>
<type>float</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='备注'>
<name>remark</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='银行名称'>
<name>bankName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='付款账号'>
<name>paymentAccountNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='收款账号'>
<name>shroffAccountNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='充值状态'>
<name>rechargeStatus</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建人'>
<name>creator.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改人'>
<name>modifier.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>RetailInfo</name>
<title>散户信息</title>
<tags/>
<description>散户信息</description>
</header>
<content>
<customQuery id='7d54c71f-e711-433e-8fa7-eb92f79e0a03'>
<kclass>com.xyst.dinas.biz.datamodel.RetailInfo</kclass>
<innerScene title='全部'>
<id>89e4acb9-7835-4aa7-8887-8415f23d97a0</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<innerScene title='已废弃'>
<id>33656c6f-ec8b-43b8-9957-66028957596c</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<field title='散户唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='场站唯一主键编码'>
<name>station.id</name>
<description>场站</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type/>
</ref>
</field>
<field title='场站名称'>
<name>station.stationName</name>
<description>场站名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.Station</name>
<type/>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<description>创建时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<description>修改时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='散户姓名'>
<name>retailInfoName</name>
<description>散户姓名</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='身份证号'>
<name>idCard</name>
<description>身份证号</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='地址'>
<name>address</name>
<description>地址</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='备注'>
<name>reason</name>
<description>备注</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<description>是否删除 true删除 false未删除</description>
<type>boolean</type>
<ref>
<name/>
<type/>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>SafeLog</name>
<title>安全日志</title>
<tags></tags>
<description>安全日志</description>
</header>
<content>
<customQuery id='b4e5373c-057a-4b0d-a9e4-20359f99f3d6'>
<kclass>com.xyst.dinas.safe.datamodel.SafeLog</kclass>
<dataProcessor>com.xyst.dinas.safe.internal.scene.SafeLogStaffNameInfoQueryProcessor</dataProcessor>
<innerScene title='全部'>
<id>dd491332-483c-4237-acbe-9aa4edef3ba5</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>0f5c6cb8-d61e-4977-9d8d-a1f8d5f2eaaa</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='所属区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<title>区域公司</title>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type>所属区域公司唯一主键编码</type>
</ref>
<description>所属区域公司唯一主键编码</description>
</field>
<field title='所属区域公司名称'>
<name>regionalCompany.name</name>
<title>区域公司名称</title>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
<description>所属区域公司名称</description>
</field>
<field title='主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type/>
<name/>
</ref>
</field>
<field title='检查日期'>
<name>checkDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>检查日期</description>
</field>
<field title='检查日期天气'>
<name>checkDateWeather</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>检查日期天气</description>
</field>
<field title='检查区域'>
<name>checkArea</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>检查区域</description>
</field>
<field title='检查结论'>
<name>checkFindings</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='不通过原因'>
<name>failureReason</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='审批状态'>
<name>applyStatus</name>
<type>int</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='审批时间'>
<name>approvalTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>SalesPlan</name>
<title>销售计划</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='72f25343-d3b1-46e6-ab05-e1dd5b8eec63'>
<kclass>com.xyst.dinas.sales.datamodel.SalesPlan</kclass>
<dataProcessor>com.xyst.dinas.sales.processor.SalesPlanProcessor</dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>8658d8f9-ca38-469d-af98-555a334566e2</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>0daa7346-ca55-4c78-ad76-095f51529fe4</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='销售计划唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>销售计划唯一主键编码</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>区域公司名称</description>
</field>
<field title='计划周期唯一主键编码'>
<name>planningCycle.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期唯一主键编码</description>
</field>
<field title='计划周期'>
<name>planningCycle.title</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期</description>
</field>
<field title='计划周期开始时间'>
<name>planningCycle.startTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期结束时间'>
<name>planningCycle.endTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='审批时间'>
<name>approveTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='审批状态'>
<name>approveState</name>
<type>int</type>
<ref>
<type></type>
<name></name>
</ref>
<description>审批状态 0未提交 1审批中 2已通过 3已驳回</description>
</field>
<field title='审批意见'>
<name>approveMemo</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>审批意见</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>创建时间</description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.sales.query</package>
<name>SalesPlanTemp</name>
<title>临时销售计划</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='a397201e-5821-4a80-ac35-d0ceb48a3517'>
<kclass>com.xyst.dinas.sales.datamodel.SalesPlanTemp</kclass>
<dataProcessor>com.xyst.dinas.sales.processor.SalesPlanTempProcessor</dataProcessor>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>91c77cc2-c68e-4683-8dc0-ec7e583fab84</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>67a43ced-3420-472a-af3b-a4755c6c9296</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='临时销售计划唯一主键编码'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description>临时销售计划唯一主键编码</description>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
</ref>
<description>区域公司唯一主键编码</description>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description>区域公司名称</description>
</field>
<field title='计划周期唯一主键编码'>
<name>planningCycle.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期唯一主键编码</description>
</field>
<field title='计划周期'>
<name>planningCycle.title</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description>计划周期</description>
</field>
<field title='计划周期开始时间'>
<name>planningCycle.startTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期结束时间'>
<name>planningCycle.endTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='审批时间'>
<name>approveTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='审批状态'>
<name>approveState</name>
<type>int</type>
<ref>
<type></type>
<name></name>
</ref>
<description>审批状态 0未提交 1审批中 2已通过 3已驳回</description>
</field>
<field title='审批意见'>
<name>approveMemo</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='项目唯一主键编码'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目唯一主键编码</description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目名称</description>
</field>
<field title='销售计划总量'>
<name>totalPlanAmount</name>
<type>fixnum</type>
<ref>
<type></type>
<name></name>
</ref>
<description>销售计划总量</description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>创建时间</description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description>修改时间</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>SandMiningArea</name>
<title>流域区域设置</title>
<description>流域区域设置</description>
</header>
<content>
<customQuery id='556e332d-295e-4728-bd39-c678474a293a'>
<kclass>com.xyst.dinas.biz.datamodel.SandMiningArea</kclass>
<innerScene title='全部'>
<id>9a8e26d2-4fa6-437a-b9c1-2f37ba4b55a9</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<innerScene title='已废弃'>
<id>1ecc746d-4e1e-455f-a83e-ee0a8032e4ec</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域设置唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<description>创建时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<description>修改时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='采区名称'>
<name>sandMiningAreaName</name>
<description>采区名称</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='采区类型'>
<name>sandMiningAreaType</name>
<description>采区类型 0流域 1可采区 2禁采区 3保留区 4综合弃沙区</description>
<type>int</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='年可采量'>
<name>sandMiningQuantity</name>
<description>年可采量</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<description>是否删除 true删除 false未删除</description>
<type>boolean</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='不通过原因'>
<name>failureReason</name>
<description>不通过原因</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='审批状态'>
<name>status</name>
<description>状态 2未通过 1通过 0待审核</description>
<type>int</type>
<ref>
<name/>
<type/>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>ShipInfo</name>
<title>船只信息</title>
<tags/>
<description>船只信息</description>
</header>
<content>
<customQuery id='25fe98c0-d328-4d9f-90c1-2088d77bd183'>
<kclass>com.xyst.dinas.biz.datamodel.ShipInfo</kclass>
<innerScene title='全部'>
<id>0c436fac-25e6-45b5-8243-c5027aeeaa12</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<innerScene title='已废弃'>
<id>2525f948-30a5-48e6-8688-cc5fa26b0dd2</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute/>
<hide/>
</innerScene>
<field title='船只唯一主键编码'>
<name>id</name>
<description>船只唯一主键编码</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<description>创建时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<description>修改时间</description>
<type>datetime</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='船舶名称'>
<name>shipName</name>
<description>船舶名称</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='船舶编号'>
<name>shipCodeNum</name>
<description>船舶编号</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='描述'>
<name>reason</name>
<description>描述</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='所属公司名称'>
<name>companyName</name>
<description>所属公司名称</description>
<type>string</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<description>是否删除 true删除 false未删除</description>
<type>boolean</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='船只类型'>
<name>type</name>
<description>类型0采砂船 1运砂船</description>
<type>int</type>
<ref>
<name/>
<type/>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>StaffViolation</name>
<title>人员违规记录</title>
<tags></tags>
<description>人员违规记录</description>
</header>
<content>
<customQuery id='580dc5cd-22b8-4a5a-b25d-7b8e21342893'>
<kclass>com.xyst.dinas.safe.datamodel.StaffViolation</kclass>
<innerScene title='全部'>
<id>2bec4531-591f-4cfe-8247-42f12c5348fd</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>0837bce9-1df4-402f-8794-35f946c1facf</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
</field>
<field title='违规人员唯一主键编码'>
<name>staff.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.beecode.bap.staff.datamodel.Staff</name>
</ref>
<description></description>
</field>
<field title='违规人员名称'>
<name>staff.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.beecode.bap.staff.datamodel.Staff</name>
</ref>
<description></description>
</field>
<field title='所属部门名称'>
<name>staff.department.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.beecode.bap.staff.datamodel.Staff</name>
</ref>
<description></description>
</field>
<field title='所属部门唯一主键编码'>
<name>staff.department.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.beecode.bap.staff.datamodel.Staff</name>
</ref>
<description></description>
</field>
<field title='违规时间'>
<name>violationDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规描述'>
<name>violationDescription</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规处理结果'>
<name>processResult</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>StationInfo</name>
<title>场站信息</title>
<tags></tags>
<description>场站信息</description>
</header>
<content>
<customQuery id='0dbe1522-05f1-42b1-8f83-cf8b76ce81a3'>
<kclass>com.xyst.dinas.biz.datamodel.Station</kclass>
<innerScene title='全部'>
<id>8bca9664-179f-466f-aa89-2b596102d234</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>d87fd733-cc6b-4747-baff-1f19b7e68a76</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title = '场站信息唯一主键编码'>
<name>id</name>
<description>场站信息唯一主键编码</description>
<type>uuid</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '场站名称'>
<name>stationName</name>
<description>场站名称</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '联系人名称'>
<name>linkMan</name>
<description>联系人名称</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '联系电话'>
<name>telephone</name>
<description>联系电话</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '场站地址'>
<name>stationAddress</name>
<description>场站地址</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '所属部门主键唯一编码'>
<name>regionalCompany.id</name>
<description>所属部门id</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title = '所属部门名称'>
<name>regionalCompany.name</name>
<description>所属部门名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title = '修改时间'>
<name>modifyTime</name>
<description>修改时间</description>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '场站状态'>
<name>stationStatus</name>
<description>0已停业 1经营中</description>
<type>int</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title = '是否删除'>
<name>del</name>
<description>是否删除 true是 false否</description>
<type>boolean</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>TrainingEducation</name>
<title>安全教育培训记录</title>
<tags></tags>
<description>安全教育培训记录</description>
</header>
<content>
<customQuery id='aa1d69a4-4b20-41c1-b1d2-21a72fcf3fc7'>
<kclass>com.xyst.dinas.safe.datamodel.TrainingEducation</kclass>
<innerScene description='全部'>
<id>3ee27bd7-d5f9-40aa-9712-917f39f62e09</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene description='已废弃'>
<id>5ca63e47-e410-4973-a1a5-6af2521a874b</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title = '所属区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
<description>所属区域公司唯一主键编码</description>
</field>
<field>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
<description>区域公司名称</description>
</field>
<field description='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type/>
<name/>
</ref>
<description/>
</field>
<field description='培训日期'>
<name>educationDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='培训会议名称'>
<name>trainingEducationName</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='参会人数'>
<name>participantsCount</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='会议地点'>
<name>meetingPlace</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='废弃'>
<name>discard</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field description='删除'>
<name>del</name>
<type>boolean</type>
<ref>
<type></type>
<name></name>
</ref>
<description>是否删除 true是 false否</description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>TransportCompany</name>
<title>运输公司备案</title>
<tags></tags>
<description>运输公司备案</description>
</header>
<content>
<customQuery id='628185d1-fb5d-459c-b2aa-770bd532f37f'>
<kclass>com.xyst.dinas.transport.datamodel.TransportCompany</kclass>
<innerScene title='全部'>
<id>dcf021cb-7b78-4214-8341-e2b3df0acea9</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>a9de2e11-fe1a-401e-93c6-49cdb5d0c8e6</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='所属区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司id</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='所属区域公司名称'>
<name>regionalCompany.name</name>
<description>所属区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='公司名称'>
<name>companyName</name>
<description>公司名称</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='营业执照编号'>
<name>businessLicense</name>
<description>营业执照编号</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='联系人'>
<name>linkMan</name>
<description>联系人</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='联系电话'>
<name>contactDetails</name>
<description>联系人电话(手机)</description>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<description>创建时间</description>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<description>是否删除 true是 false否</description>
<type>boolean</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>TransportVehicle</name>
<title>运输车辆备案</title>
<tags></tags>
<description>运输车辆备案</description>
</header>
<content>
<customQuery id='3d444bd8-8c50-4a7e-8940-e5f59a983f84'>
<kclass>com.xyst.dinas.transport.datamodel.TransportVehicle</kclass>
<innerScene title='全部'>
<id>ed860d94-b438-4736-a0b5-bde7dff05bc1</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>8ec578a9-1b84-4253-9562-34730f3deee6</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='所属区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<desc>区域公司id</desc>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='所属区域公司名称'>
<name>regionalCompany.name</name>
<desc>所属区域公司名称</desc>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='所属运输公司唯一主键编码'>
<name>transportCompany.id</name>
<desc>所属运输公司</desc>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.transport.datamodel.TransportCompany</name>
<type></type>
</ref>
</field>
<field title='所属运输公司名称'>
<name>transportCompany.companyName</name>
<desc>所属运输公司name</desc>
<type>string</type>
<ref>
<name>com.xyst.dinas.transport.datamodel.TransportCompany</name>
<type></type>
</ref>
</field>
<field title='运输记录主键唯一编码'>
<name>id</name>
<desc>id</desc>
<type>uuid</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='设备号'>
<name>deviceNumber</name>
<desc>设备号</desc>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='型号'>
<name>model</name>
<desc>型号</desc>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='品牌'>
<name>brand</name>
<desc>品牌</desc>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='车牌号'>
<name>plateNumber</name>
<desc>车牌号</desc>
<type>string</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='创建时间'>
<name>createTime</name>
<desc>创建时间</desc>
<type>datetime</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
<field title='是否删除'>
<name>del</name>
<desc>是否删除 true是 false否</desc>
<type>boolean</type>
<ref>
<name></name>
<type></type>
</ref>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.fileshared.query</package>
<name>VehicleDispatch</name>
<title>派单</title>
<tags></tags>
<description></description>
</header>
<content>
<customQuery id='07818d15-d8db-42f9-8951-acb61c7a322e'>
<kclass>com.xyst.dinas.transport.datamodel.VehicleDispatch</kclass>
<authorityItem></authorityItem>
<innerScene title='全部'>
<id>4ab2d9fb-e055-4bd1-81ad-b7178598448f</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>f2f4e7ed-6306-420c-82f1-300ba6942906</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='id'>
<name>id</name>
<type>uuid</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='所属区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<desc>区域公司id</desc>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='所属区域公司名称'>
<name>regionalCompany.name</name>
<desc>所属区域公司名称</desc>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type></type>
</ref>
</field>
<field title='计划周期'>
<name>planningCycle.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期title'>
<name>planningCycle.title</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期开始时间'>
<name>planningCycle.startTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='计划周期结束时间'>
<name>planningCycle.endTime</name>
<type>datetime</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.PlanningCycle</name>
</ref>
<description></description>
</field>
<field title='项目唯一主键编码'>
<name>project.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目唯一主键编码</description>
</field>
<field title='项目名称'>
<name>project.projectName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.ProjectFiled</name>
</ref>
<description>项目名称</description>
</field>
<field title='合同唯一主键编码'>
<name>contract.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description>合同唯一主键编码</description>
</field>
<field title='合同名称'>
<name>contract.contractName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.contract.datamodel.Contract</name>
</ref>
<description>合同名称</description>
</field>
<field title='砂石类型唯一主键编码'>
<name>dinasType.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.DinasType</name>
</ref>
<description>砂石类型唯一主键编码</description>
</field>
<field title='砂石类型名称'>
<name>dinasType.dinasTypeName</name>
<type>string</type>
<ref>
<type>砂石类型名称</type>
<name>com.xyst.dinas.biz.datamodel.DinasType</name>
</ref>
<description></description>
</field>
<field title='场站唯一主键编码'>
<name>station.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.Station</name>
</ref>
<description>场站唯一主键编码</description>
</field>
<field title='场站名称'>
<name>station.stationName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.biz.datamodel.Station</name>
</ref>
<description>场站名称</description>
</field>
<field title='运输公司唯一主键编码'>
<name>transportCompany.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.transport.datamodel.TransportCompany</name>
</ref>
<description>运输公司唯一主键编码</description>
</field>
<field title='运输公司名称'>
<name>transportCompany.companyName</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.transport.datamodel.TransportCompany</name>
</ref>
<description>运输公司名称</description>
</field>
<field title='运输车辆唯一主键编码'>
<name>transportVehicle.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.transport.datamodel.TransportVehicle</name>
</ref>
<description>运输车辆唯一主键编码</description>
</field>
<field title='运输车辆车牌号'>
<name>transportVehicle.plateNumber</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.transport.datamodel.TransportVehicle</name>
</ref>
<description>运输车辆车牌号</description>
</field>
<field title='购砂单位唯一主键编码'>
<name>purchaseSandUnit.id</name>
<type>uuid</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description>购砂单位唯一主键编码</description>
</field>
<field title='购砂单位名称'>
<name>purchaseSandUnit.name</name>
<type>string</type>
<ref>
<type></type>
<name>com.xyst.dinas.project.datamodel.PurchaseSandCompany</name>
</ref>
<description>购砂单位名称</description>
</field>
<field title='派单类型'>
<name>dispatchType</name>
<type>int</type>
<ref>
<type/>
</ref>
<description>0临时销售计划 1需用计划</description>
</field>
<field title='实际运输量'>
<name>actualTransportation</name>
<type>fixnum</type>
<ref>
<type/>
</ref>
<description/>
</field>
<field title='计划销售量'>
<name>planAmount</name>
<type>fixnum</type>
<ref>
<type/>
</ref>
<description/>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
<model>
<header>
<type>inz.query.Query</type>
<package>com.xyst.dinas.safe.query</package>
<name>VehicleViolation</name>
<title>车辆违规记录</title>
<tags/>
<description>人员违规记录</description>
</header>
<content>
<customQuery id='661b3217-8959-429b-b7e4-88a1f3ad0034'>
<kclass>com.xyst.dinas.safe.datamodel.VehicleViolation</kclass>
<innerScene title='全部'>
<id>a147d1eb-63b5-41f3-a65b-dfeef000c614</id>
<javaImplement>com.beecode.inz.common.scene.CommonAllScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<innerScene title='已废弃'>
<id>ad288fd5-5a5e-44de-8832-8c7b32668937</id>
<javaImplement>com.beecode.inz.common.scene.DefaultDiscardScene</javaImplement>
<defaultExecute></defaultExecute>
<hide></hide>
</innerScene>
<field title='唯一主键编码'>
<name>id</name>
<description>id</description>
<type>uuid</type>
<ref>
<name/>
<type/>
</ref>
</field>
<field title='区域公司唯一主键编码'>
<name>regionalCompany.id</name>
<description>区域公司唯一主键编码</description>
<type>uuid</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='区域公司名称'>
<name>regionalCompany.name</name>
<description>区域公司名称</description>
<type>string</type>
<ref>
<name>com.xyst.dinas.biz.datamodel.xystOrganization</name>
<type/>
</ref>
</field>
<field title='违规车牌号'>
<name>plateNumber</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规时间'>
<name>violationDate</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规描述'>
<name>violationDescription</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='违规处理结果'>
<name>processResult</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建时间'>
<name>createTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='创建人'>
<name>creator.name</name>
<type>string</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
<field title='修改时间'>
<name>modifyTime</name>
<type>datetime</type>
<ref>
<type></type>
<name></name>
</ref>
<description></description>
</field>
</customQuery>
</content>
</model>
# Auto Configure
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.xyst.dinas.fileshared.config.FileSharedSettingConfiguration
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<metadata xmlns="http://www.beecode.cn/schema/amino-metadata" xmlns:m="http://www.beecode.cn/schema/bcp-privilege">
<specification>1.0</specification>
<id>f24ebc96-d7be-43d6-8d8a-d3c85da98802</id>
<name>com.xyst.dinas.fileshared.auth.FilesharedList</name>
<title>列表</title>
<define>bcp.authz.privilege</define>
<define-version>1.0.0</define-version>
<content>
<m:privilege>
<m:type>TOKEN</m:type>
<m:category>文件共享/文件共享(集团)</m:category>
<m:seq>0</m:seq>
</m:privilege>
</content>
</metadata>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment