Commit a590e2e21e76a3db770c14a34b016f56e8d6872b
1 parent
f075068f
Refactor FlowBox component to streamline view resolution logic by introducing ge…
…tSystemFormView method. Update main.js and related component files to correct import paths for lf-pickup-code and lf-pickup-complete components. Add new attendance-related pages and update app configuration for improved functiona
Showing
497 changed files
with
59316 additions
and
13860 deletions
Too many changes.
To preserve performance only 100 of 497 files are displayed.
antis-ncc-admin/src/views/workFlow/applyForms/qjsq/index.vue
0 → 100644
| 1 | +<template> | |
| 2 | + <div class="flow-form" v-loading="loading"> | |
| 3 | + <div class="com-title"> | |
| 4 | + <h1>请假申请</h1> | |
| 5 | + <span class="number">流程编码:{{dataForm.billNo}}</span> | |
| 6 | + </div> | |
| 7 | + <el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="100px" | |
| 8 | + :disabled="setting.readonly"> | |
| 9 | + <el-row> | |
| 10 | + <el-col :span="12" v-if="judgeShow('flowTitle')"> | |
| 11 | + <el-form-item label="流程标题" prop="flowTitle"> | |
| 12 | + <el-input v-model="dataForm.flowTitle" placeholder="流程标题" | |
| 13 | + :disabled="judgeWrite('flowTitle')"></el-input> | |
| 14 | + </el-form-item> | |
| 15 | + </el-col> | |
| 16 | + <el-col :span="12" v-if="judgeShow('flowUrgent')"> | |
| 17 | + <el-form-item label="紧急程度" prop="flowUrgent"> | |
| 18 | + <el-select v-model="dataForm.flowUrgent" placeholder="选择紧急程度" | |
| 19 | + :disabled="judgeWrite('flowUrgent')"> | |
| 20 | + <el-option :key="item.value" :label="item.label" :value="item.value" | |
| 21 | + v-for="item in flowUrgentOptions" /> | |
| 22 | + </el-select> | |
| 23 | + </el-form-item> | |
| 24 | + </el-col> | |
| 25 | + <el-col :span="12" v-if="judgeShow('applyUser')"> | |
| 26 | + <el-form-item label="申请人员" prop="applyUser"> | |
| 27 | + <el-input v-model="dataForm.applyUser" placeholder="申请人员" readonly | |
| 28 | + :disabled="judgeWrite('applyUser')"></el-input> | |
| 29 | + </el-form-item> | |
| 30 | + </el-col> | |
| 31 | + <el-col :span="12" v-if="judgeShow('applyDate')"> | |
| 32 | + <el-form-item label="申请日期" prop="applyDate"> | |
| 33 | + <el-date-picker v-model="dataForm.applyDate" type="date" placeholder="选择日期" | |
| 34 | + value-format="timestamp" format="yyyy-MM-dd" :editable="false" readonly | |
| 35 | + :disabled="judgeWrite('applyDate')"> | |
| 36 | + </el-date-picker> | |
| 37 | + </el-form-item> | |
| 38 | + </el-col> | |
| 39 | + <el-col :span="12" v-if="judgeShow('applyDept')"> | |
| 40 | + <el-form-item label="申请部门" prop="applyDept"> | |
| 41 | + <el-input v-model="dataForm.applyDept" placeholder="申请部门" readonly | |
| 42 | + :disabled="judgeWrite('applyDept')"></el-input> | |
| 43 | + </el-form-item> | |
| 44 | + </el-col> | |
| 45 | + <el-col :span="12" v-if="judgeShow('applyPost')"> | |
| 46 | + <el-form-item label="申请职位" prop="applyPost"> | |
| 47 | + <el-input v-model="dataForm.applyPost" placeholder="申请职位" readonly | |
| 48 | + :disabled="judgeWrite('applyPost')"></el-input> | |
| 49 | + </el-form-item> | |
| 50 | + </el-col> | |
| 51 | + <el-col :span="24" v-if="judgeShow('leaveType')"> | |
| 52 | + <el-form-item label="请假类别" prop="leaveType"> | |
| 53 | + <el-radio-group v-model="dataForm.leaveType" :disabled="judgeWrite('leaveType')"> | |
| 54 | + <el-radio :label="item" v-for="item in leaveTypeOptions" :key="item">{{ item }}</el-radio> | |
| 55 | + </el-radio-group> | |
| 56 | + </el-form-item> | |
| 57 | + </el-col> | |
| 58 | + <el-col :span="24" v-if="judgeShow('leaveReason')"> | |
| 59 | + <el-form-item label="请假原因" prop="leaveReason"> | |
| 60 | + <el-input v-model="dataForm.leaveReason" placeholder="请假原因" type="textarea" :rows="3" | |
| 61 | + :disabled="judgeWrite('leaveReason')" /> | |
| 62 | + </el-form-item> | |
| 63 | + </el-col> | |
| 64 | + <el-col :span="12" v-if="judgeShow('leaveStartTime')"> | |
| 65 | + <el-form-item label="起始时间" prop="leaveStartTime"> | |
| 66 | + <el-date-picker v-model="dataForm.leaveStartTime" type="datetime" placeholder="选择日期" | |
| 67 | + value-format="timestamp" format="yyyy-MM-dd HH:mm" :editable="false" | |
| 68 | + :disabled="judgeWrite('leaveStartTime')"> | |
| 69 | + </el-date-picker> | |
| 70 | + </el-form-item> | |
| 71 | + </el-col> | |
| 72 | + <el-col :span="12" v-if="judgeShow('leaveEndTime')"> | |
| 73 | + <el-form-item label="结束时间" prop="leaveEndTime"> | |
| 74 | + <el-date-picker v-model="dataForm.leaveEndTime" type="datetime" placeholder="选择日期" | |
| 75 | + value-format="timestamp" format="yyyy-MM-dd HH:mm" :editable="false" | |
| 76 | + :disabled="judgeWrite('leaveEndTime')"> | |
| 77 | + </el-date-picker> | |
| 78 | + </el-form-item> | |
| 79 | + </el-col> | |
| 80 | + <el-col :span="12" v-if="judgeShow('leaveDayCount')"> | |
| 81 | + <el-form-item label="请假天数" prop="leaveDayCount"> | |
| 82 | + <el-input v-model="dataForm.leaveDayCount" placeholder="请假天数" | |
| 83 | + :disabled="judgeWrite('leaveDayCount')"> | |
| 84 | + <template slot="append">天</template> | |
| 85 | + </el-input> | |
| 86 | + </el-form-item> | |
| 87 | + </el-col> | |
| 88 | + <el-col :span="12" v-if="judgeShow('leaveHour')"> | |
| 89 | + <el-form-item label="请假小时" prop="leaveHour"> | |
| 90 | + <el-input v-model="dataForm.leaveHour" placeholder="请假小时" | |
| 91 | + :disabled="judgeWrite('leaveHour')"></el-input> | |
| 92 | + </el-form-item> | |
| 93 | + </el-col> | |
| 94 | + <el-col :span="24" v-if="judgeShow('fileJson')"> | |
| 95 | + <el-form-item label="相关附件" prop="fileJson"> | |
| 96 | + <NCC-UploadFz v-model="fileList" type="workFlow" :disabled="judgeWrite('fileJson')" /> | |
| 97 | + </el-form-item> | |
| 98 | + </el-col> | |
| 99 | + </el-row> | |
| 100 | + </el-form> | |
| 101 | + </div> | |
| 102 | +</template> | |
| 103 | + | |
| 104 | +<script> | |
| 105 | +import comMixin from '../../workFlowForm/mixin' | |
| 106 | +import { Info, Create, Update } from '@/api/workFlow/workFlowForm' | |
| 107 | + | |
| 108 | +export default { | |
| 109 | + mixins: [comMixin], | |
| 110 | + name: 'QjsqApply', | |
| 111 | + data() { | |
| 112 | + const checkStartTime = (rule, value, callback) => { | |
| 113 | + if (!this.dataForm.leaveEndTime) { | |
| 114 | + callback() | |
| 115 | + } else if (this.dataForm.leaveEndTime < value) { | |
| 116 | + callback(new Error('起始日期应该小于结束日期')) | |
| 117 | + } else { | |
| 118 | + this.$refs.dataForm.validateField('leaveEndTime') | |
| 119 | + callback() | |
| 120 | + } | |
| 121 | + } | |
| 122 | + const checkEndTime = (rule, value, callback) => { | |
| 123 | + if (!this.dataForm.leaveStartTime) { | |
| 124 | + callback() | |
| 125 | + } else if (this.dataForm.leaveStartTime > value) { | |
| 126 | + callback(new Error('结束日期应该大于起始日期')) | |
| 127 | + } else { | |
| 128 | + callback() | |
| 129 | + } | |
| 130 | + } | |
| 131 | + return { | |
| 132 | + billEnCode: 'WF_LeaveApplyNo', | |
| 133 | + formApiKey: 'leaveApply', | |
| 134 | + dataForm: { | |
| 135 | + flowId: '', | |
| 136 | + id: '', | |
| 137 | + billNo: '', | |
| 138 | + flowTitle: '', | |
| 139 | + flowUrgent: 1, | |
| 140 | + applyUser: '', | |
| 141 | + applyDate: '', | |
| 142 | + applyDept: '', | |
| 143 | + applyPost: '', | |
| 144 | + leaveType: '事假', | |
| 145 | + leaveReason: '', | |
| 146 | + leaveStartTime: '', | |
| 147 | + leaveEndTime: '', | |
| 148 | + leaveDayCount: '', | |
| 149 | + leaveHour: '', | |
| 150 | + fileJson: '' | |
| 151 | + }, | |
| 152 | + dataRule: { | |
| 153 | + flowTitle: [ | |
| 154 | + { required: true, message: '流程标题不能为空', trigger: 'blur' } | |
| 155 | + ], | |
| 156 | + flowUrgent: [ | |
| 157 | + { required: true, message: '紧急程度不能为空', trigger: 'change' } | |
| 158 | + ], | |
| 159 | + leaveType: [ | |
| 160 | + { required: true, message: '请假类别不能为空', trigger: 'change' } | |
| 161 | + ], | |
| 162 | + leaveReason: [ | |
| 163 | + { required: true, message: '请假原因不能为空', trigger: 'blur' } | |
| 164 | + ], | |
| 165 | + leaveStartTime: [ | |
| 166 | + { required: true, message: '起始时间不能为空', trigger: 'change' }, | |
| 167 | + { validator: checkStartTime, trigger: 'change' } | |
| 168 | + ], | |
| 169 | + leaveEndTime: [ | |
| 170 | + { required: true, message: '结束时间不能为空', trigger: 'change' }, | |
| 171 | + { validator: checkEndTime, trigger: 'change' } | |
| 172 | + ], | |
| 173 | + leaveDayCount: [ | |
| 174 | + { required: true, message: '请假天数不能为空', trigger: 'blur' }, | |
| 175 | + { validator: this.formValidate('allDate', '请假时间必须是整数和0.5的倍数'), trigger: 'blur' } | |
| 176 | + ], | |
| 177 | + leaveHour: [ | |
| 178 | + { required: true, message: '请假小时不能为空', trigger: 'blur' }, | |
| 179 | + { validator: this.formValidate('allDate', '请假小时必须是整数和0.5的倍数'), trigger: 'blur' } | |
| 180 | + ] | |
| 181 | + }, | |
| 182 | + leaveTypeOptions: ['事假', '病假', '婚假', '产假', '丧假', '年假', '调休', '其他'] | |
| 183 | + } | |
| 184 | + }, | |
| 185 | + methods: { | |
| 186 | + selfInit() { | |
| 187 | + this.dataForm.applyDate = new Date().getTime() | |
| 188 | + this.dataForm.flowTitle = this.userInfo.userName + '的请假申请' | |
| 189 | + this.dataForm.applyUser = this.userInfo.userName + '/' + this.userInfo.userAccount | |
| 190 | + this.dataForm.applyDept = this.userInfo.organizeName | |
| 191 | + if (this.userInfo.positionIds && this.userInfo.positionIds.length) { | |
| 192 | + const list = this.userInfo.positionIds.map(o => o.name) | |
| 193 | + this.dataForm.applyPost = list.join(',') | |
| 194 | + } | |
| 195 | + }, | |
| 196 | + selfGetInfo() { | |
| 197 | + Info(this.formApiKey, this.setting.id).then(res => { | |
| 198 | + this.dataForm = res.data | |
| 199 | + if (res.data.fileJson) { | |
| 200 | + this.fileList = JSON.parse(res.data.fileJson) | |
| 201 | + } | |
| 202 | + this.$emit('setPageLoad') | |
| 203 | + }) | |
| 204 | + }, | |
| 205 | + selfSubmit() { | |
| 206 | + this.dataForm.status = this.eventType === 'submit' ? 0 : 1 | |
| 207 | + if (this.eventType === 'save') return this.selfHandleRequest() | |
| 208 | + this.$confirm('您确定要提交当前流程吗, 是否继续?', '提示', { | |
| 209 | + type: 'warning' | |
| 210 | + }).then(() => { | |
| 211 | + this.selfHandleRequest() | |
| 212 | + }).catch(() => { }) | |
| 213 | + }, | |
| 214 | + selfHandleRequest() { | |
| 215 | + if (!this.dataForm.id) delete this.dataForm.id | |
| 216 | + if (this.eventType === 'save') this.$emit('setLoad', true) | |
| 217 | + const formMethod = this.dataForm.id ? Update : Create | |
| 218 | + formMethod(this.formApiKey, this.dataForm).then(res => { | |
| 219 | + this.$message({ | |
| 220 | + message: res.msg, | |
| 221 | + type: 'success', | |
| 222 | + duration: 1500, | |
| 223 | + onClose: () => { | |
| 224 | + if (this.eventType === 'save') this.$emit('setLoad', false) | |
| 225 | + this.$emit('close', true) | |
| 226 | + } | |
| 227 | + }) | |
| 228 | + }).catch(() => { | |
| 229 | + if (this.eventType === 'save') this.$emit('setLoad', false) | |
| 230 | + }) | |
| 231 | + } | |
| 232 | + } | |
| 233 | +} | |
| 234 | +</script> | ... | ... |
antis-ncc-admin/src/views/workFlow/components/FlowBox.vue
| ... | ... | @@ -198,11 +198,7 @@ export default { |
| 198 | 198 | data.type = res.data.type |
| 199 | 199 | data.fullName = res.data.fullName |
| 200 | 200 | if (data.formType == 1) { |
| 201 | - if (res.data.formUrl) { | |
| 202 | - this.currentView = (resolve) => require([`@/views/${res.data.formUrl}`], resolve) | |
| 203 | - } else { | |
| 204 | - this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/${data.enCode}`], resolve) | |
| 205 | - } | |
| 201 | + this.currentView = this.getSystemFormView(res.data.formUrl, data.enCode) | |
| 206 | 202 | } else { |
| 207 | 203 | this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/dynamicForm`], resolve) |
| 208 | 204 | } |
| ... | ... | @@ -228,11 +224,7 @@ export default { |
| 228 | 224 | data.fullName = this.flowTaskInfo.fullName |
| 229 | 225 | data.type = this.flowTaskInfo.type |
| 230 | 226 | if (data.formType == 1) { |
| 231 | - if (this.flowTaskInfo.formUrl) { | |
| 232 | - this.currentView = (resolve) => require([`@/views/${this.flowTaskInfo.formUrl}`], resolve) | |
| 233 | - } else { | |
| 234 | - this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/${data.enCode}`], resolve) | |
| 235 | - } | |
| 227 | + this.currentView = this.getSystemFormView(this.flowTaskInfo.formUrl, data.enCode) | |
| 236 | 228 | } else { |
| 237 | 229 | this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/dynamicForm`], resolve) |
| 238 | 230 | } |
| ... | ... | @@ -279,6 +271,18 @@ export default { |
| 279 | 271 | }, 500) |
| 280 | 272 | }).catch(() => { this.loading = false }) |
| 281 | 273 | }, |
| 274 | + getSystemFormView(formUrl, enCode) { | |
| 275 | + if (formUrl) { | |
| 276 | + return (resolve) => require([`@/views/${formUrl}`], resolve) | |
| 277 | + } | |
| 278 | + return (resolve) => { | |
| 279 | + try { | |
| 280 | + require([`@/views/workFlow/applyForms/${enCode}`], resolve) | |
| 281 | + } catch (e) { | |
| 282 | + require([`@/views/workFlow/workFlowForm/${enCode}`], resolve) | |
| 283 | + } | |
| 284 | + } | |
| 285 | + }, | |
| 282 | 286 | eventLancher(eventType) { |
| 283 | 287 | this.$refs.form && this.$refs.form.dataFormSubmit(eventType) |
| 284 | 288 | }, | ... | ... |
member-miniapp/unpackage/dist/dev/mp-weixin/common/main.js
| ... | ... | @@ -21,12 +21,12 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va |
| 21 | 21 | wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__; |
| 22 | 22 | var LfPickupCode = function LfPickupCode() { |
| 23 | 23 | __webpack_require__.e(/*! require.ensure | components/lf-pickup-code */ "components/lf-pickup-code").then((function () { |
| 24 | - return resolve(__webpack_require__(/*! ./components/lf-pickup-code.vue */ 255)); | |
| 24 | + return resolve(__webpack_require__(/*! ./components/lf-pickup-code.vue */ 232)); | |
| 25 | 25 | }).bind(null, __webpack_require__)).catch(__webpack_require__.oe); |
| 26 | 26 | }; |
| 27 | 27 | var LfPickupComplete = function LfPickupComplete() { |
| 28 | 28 | __webpack_require__.e(/*! require.ensure | components/lf-pickup-complete */ "components/lf-pickup-complete").then((function () { |
| 29 | - return resolve(__webpack_require__(/*! ./components/lf-pickup-complete.vue */ 263)); | |
| 29 | + return resolve(__webpack_require__(/*! ./components/lf-pickup-complete.vue */ 239)); | |
| 30 | 30 | }).bind(null, __webpack_require__)).catch(__webpack_require__.oe); |
| 31 | 31 | }; |
| 32 | 32 | _vue.default.config.productionTip = false; | ... | ... |
member-miniapp/unpackage/dist/dev/mp-weixin/components/lf-pickup-code.js
| 1 | 1 | (global["webpackJsonp"] = global["webpackJsonp"] || []).push([["components/lf-pickup-code"],{ |
| 2 | 2 | |
| 3 | -/***/ 255: | |
| 3 | +/***/ 232: | |
| 4 | 4 | /*!******************************************************************************************!*\ |
| 5 | 5 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue ***! |
| 6 | 6 | \******************************************************************************************/ |
| ... | ... | @@ -9,10 +9,10 @@ |
| 9 | 9 | |
| 10 | 10 | "use strict"; |
| 11 | 11 | __webpack_require__.r(__webpack_exports__); |
| 12 | -/* harmony import */ var _lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& */ 256); | |
| 13 | -/* harmony import */ var _lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=script&lang=js& */ 258); | |
| 12 | +/* harmony import */ var _lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& */ 233); | |
| 13 | +/* harmony import */ var _lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=script&lang=js& */ 235); | |
| 14 | 14 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 15 | -/* harmony import */ var _lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& */ 260); | |
| 15 | +/* harmony import */ var _lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& */ 237); | |
| 16 | 16 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 36); |
| 17 | 17 | |
| 18 | 18 | var renderjs |
| ... | ... | @@ -41,7 +41,7 @@ component.options.__file = "components/lf-pickup-code.vue" |
| 41 | 41 | |
| 42 | 42 | /***/ }), |
| 43 | 43 | |
| 44 | -/***/ 256: | |
| 44 | +/***/ 233: | |
| 45 | 45 | /*!*************************************************************************************************************************************!*\ |
| 46 | 46 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& ***! |
| 47 | 47 | \*************************************************************************************************************************************/ |
| ... | ... | @@ -50,7 +50,7 @@ component.options.__file = "components/lf-pickup-code.vue" |
| 50 | 50 | |
| 51 | 51 | "use strict"; |
| 52 | 52 | __webpack_require__.r(__webpack_exports__); |
| 53 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& */ 257); | |
| 53 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& */ 234); | |
| 54 | 54 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; }); |
| 55 | 55 | |
| 56 | 56 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_template_id_ea338974_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; }); |
| ... | ... | @@ -63,7 +63,7 @@ __webpack_require__.r(__webpack_exports__); |
| 63 | 63 | |
| 64 | 64 | /***/ }), |
| 65 | 65 | |
| 66 | -/***/ 257: | |
| 66 | +/***/ 234: | |
| 67 | 67 | /*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 68 | 68 | !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=template&id=ea338974&scoped=true& ***! |
| 69 | 69 | \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -90,7 +90,7 @@ render._withStripped = true |
| 90 | 90 | |
| 91 | 91 | /***/ }), |
| 92 | 92 | |
| 93 | -/***/ 258: | |
| 93 | +/***/ 235: | |
| 94 | 94 | /*!*******************************************************************************************************************!*\ |
| 95 | 95 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=script&lang=js& ***! |
| 96 | 96 | \*******************************************************************************************************************/ |
| ... | ... | @@ -99,14 +99,14 @@ render._withStripped = true |
| 99 | 99 | |
| 100 | 100 | "use strict"; |
| 101 | 101 | __webpack_require__.r(__webpack_exports__); |
| 102 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=script&lang=js& */ 259); | |
| 102 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=script&lang=js& */ 236); | |
| 103 | 103 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__); |
| 104 | 104 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 105 | 105 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 106 | 106 | |
| 107 | 107 | /***/ }), |
| 108 | 108 | |
| 109 | -/***/ 259: | |
| 109 | +/***/ 236: | |
| 110 | 110 | /*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 111 | 111 | !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=script&lang=js& ***! |
| 112 | 112 | \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -255,7 +255,7 @@ exports.default = _default; |
| 255 | 255 | |
| 256 | 256 | /***/ }), |
| 257 | 257 | |
| 258 | -/***/ 260: | |
| 258 | +/***/ 237: | |
| 259 | 259 | /*!****************************************************************************************************************************************************!*\ |
| 260 | 260 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& ***! |
| 261 | 261 | \****************************************************************************************************************************************************/ |
| ... | ... | @@ -264,14 +264,14 @@ exports.default = _default; |
| 264 | 264 | |
| 265 | 265 | "use strict"; |
| 266 | 266 | __webpack_require__.r(__webpack_exports__); |
| 267 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& */ 261); | |
| 267 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& */ 238); | |
| 268 | 268 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); |
| 269 | 269 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 270 | 270 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_code_vue_vue_type_style_index_0_id_ea338974_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 271 | 271 | |
| 272 | 272 | /***/ }), |
| 273 | 273 | |
| 274 | -/***/ 261: | |
| 274 | +/***/ 238: | |
| 275 | 275 | /*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 276 | 276 | !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!./node_modules/postcss-loader/src??ref--8-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-code.vue?vue&type=style&index=0&id=ea338974&lang=scss&scoped=true& ***! |
| 277 | 277 | \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -290,7 +290,7 @@ __webpack_require__.r(__webpack_exports__); |
| 290 | 290 | 'components/lf-pickup-code-create-component', |
| 291 | 291 | { |
| 292 | 292 | 'components/lf-pickup-code-create-component':(function(module, exports, __webpack_require__){ |
| 293 | - __webpack_require__('2')['createComponent'](__webpack_require__(255)) | |
| 293 | + __webpack_require__('2')['createComponent'](__webpack_require__(232)) | |
| 294 | 294 | }) |
| 295 | 295 | }, |
| 296 | 296 | [['components/lf-pickup-code-create-component']] | ... | ... |
member-miniapp/unpackage/dist/dev/mp-weixin/components/lf-pickup-complete.js
| 1 | 1 | (global["webpackJsonp"] = global["webpackJsonp"] || []).push([["components/lf-pickup-complete"],{ |
| 2 | 2 | |
| 3 | -/***/ 263: | |
| 3 | +/***/ 239: | |
| 4 | 4 | /*!**********************************************************************************************!*\ |
| 5 | 5 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue ***! |
| 6 | 6 | \**********************************************************************************************/ |
| ... | ... | @@ -9,10 +9,10 @@ |
| 9 | 9 | |
| 10 | 10 | "use strict"; |
| 11 | 11 | __webpack_require__.r(__webpack_exports__); |
| 12 | -/* harmony import */ var _lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& */ 264); | |
| 13 | -/* harmony import */ var _lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=script&lang=js& */ 266); | |
| 12 | +/* harmony import */ var _lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& */ 240); | |
| 13 | +/* harmony import */ var _lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=script&lang=js& */ 242); | |
| 14 | 14 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 15 | -/* harmony import */ var _lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& */ 268); | |
| 15 | +/* harmony import */ var _lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& */ 244); | |
| 16 | 16 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 36); |
| 17 | 17 | |
| 18 | 18 | var renderjs |
| ... | ... | @@ -41,7 +41,7 @@ component.options.__file = "components/lf-pickup-complete.vue" |
| 41 | 41 | |
| 42 | 42 | /***/ }), |
| 43 | 43 | |
| 44 | -/***/ 264: | |
| 44 | +/***/ 240: | |
| 45 | 45 | /*!*****************************************************************************************************************************************!*\ |
| 46 | 46 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& ***! |
| 47 | 47 | \*****************************************************************************************************************************************/ |
| ... | ... | @@ -50,7 +50,7 @@ component.options.__file = "components/lf-pickup-complete.vue" |
| 50 | 50 | |
| 51 | 51 | "use strict"; |
| 52 | 52 | __webpack_require__.r(__webpack_exports__); |
| 53 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& */ 265); | |
| 53 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& */ 241); | |
| 54 | 54 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; }); |
| 55 | 55 | |
| 56 | 56 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_template_id_f75c9fdc_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; }); |
| ... | ... | @@ -63,7 +63,7 @@ __webpack_require__.r(__webpack_exports__); |
| 63 | 63 | |
| 64 | 64 | /***/ }), |
| 65 | 65 | |
| 66 | -/***/ 265: | |
| 66 | +/***/ 241: | |
| 67 | 67 | /*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 68 | 68 | !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=template&id=f75c9fdc&scoped=true& ***! |
| 69 | 69 | \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -90,7 +90,7 @@ render._withStripped = true |
| 90 | 90 | |
| 91 | 91 | /***/ }), |
| 92 | 92 | |
| 93 | -/***/ 266: | |
| 93 | +/***/ 242: | |
| 94 | 94 | /*!***********************************************************************************************************************!*\ |
| 95 | 95 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=script&lang=js& ***! |
| 96 | 96 | \***********************************************************************************************************************/ |
| ... | ... | @@ -99,14 +99,14 @@ render._withStripped = true |
| 99 | 99 | |
| 100 | 100 | "use strict"; |
| 101 | 101 | __webpack_require__.r(__webpack_exports__); |
| 102 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=script&lang=js& */ 267); | |
| 102 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=script&lang=js& */ 243); | |
| 103 | 103 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__); |
| 104 | 104 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 105 | 105 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 106 | 106 | |
| 107 | 107 | /***/ }), |
| 108 | 108 | |
| 109 | -/***/ 267: | |
| 109 | +/***/ 243: | |
| 110 | 110 | /*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 111 | 111 | !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=script&lang=js& ***! |
| 112 | 112 | \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -167,7 +167,7 @@ exports.default = _default; |
| 167 | 167 | |
| 168 | 168 | /***/ }), |
| 169 | 169 | |
| 170 | -/***/ 268: | |
| 170 | +/***/ 244: | |
| 171 | 171 | /*!********************************************************************************************************************************************************!*\ |
| 172 | 172 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& ***! |
| 173 | 173 | \********************************************************************************************************************************************************/ |
| ... | ... | @@ -176,14 +176,14 @@ exports.default = _default; |
| 176 | 176 | |
| 177 | 177 | "use strict"; |
| 178 | 178 | __webpack_require__.r(__webpack_exports__); |
| 179 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& */ 269); | |
| 179 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& */ 245); | |
| 180 | 180 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); |
| 181 | 181 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 182 | 182 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_lf_pickup_complete_vue_vue_type_style_index_0_id_f75c9fdc_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 183 | 183 | |
| 184 | 184 | /***/ }), |
| 185 | 185 | |
| 186 | -/***/ 269: | |
| 186 | +/***/ 245: | |
| 187 | 187 | /*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 188 | 188 | !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!./node_modules/postcss-loader/src??ref--8-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/components/lf-pickup-complete.vue?vue&type=style&index=0&id=f75c9fdc&lang=scss&scoped=true& ***! |
| 189 | 189 | \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -202,7 +202,7 @@ __webpack_require__.r(__webpack_exports__); |
| 202 | 202 | 'components/lf-pickup-complete-create-component', |
| 203 | 203 | { |
| 204 | 204 | 'components/lf-pickup-complete-create-component':(function(module, exports, __webpack_require__){ |
| 205 | - __webpack_require__('2')['createComponent'](__webpack_require__(263)) | |
| 205 | + __webpack_require__('2')['createComponent'](__webpack_require__(239)) | |
| 206 | 206 | }) |
| 207 | 207 | }, |
| 208 | 208 | [['components/lf-pickup-complete-create-component']] | ... | ... |
member-miniapp/unpackage/dist/dev/mp-weixin/packageProfile/pickup-code/pickup-code.js
| 1 | 1 | (global["webpackJsonp"] = global["webpackJsonp"] || []).push([["packageProfile/pickup-code/pickup-code"],{ |
| 2 | 2 | |
| 3 | -/***/ 246: | |
| 3 | +/***/ 224: | |
| 4 | 4 | /*!**************************************************************************************************************************!*\ |
| 5 | 5 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/main.js?{"page":"packageProfile%2Fpickup-code%2Fpickup-code"} ***! |
| 6 | 6 | \**************************************************************************************************************************/ |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4); |
| 14 | 14 | __webpack_require__(/*! uni-pages */ 30); |
| 15 | 15 | var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 25)); |
| 16 | -var _pickupCode = _interopRequireDefault(__webpack_require__(/*! ./packageProfile/pickup-code/pickup-code.vue */ 247)); | |
| 16 | +var _pickupCode = _interopRequireDefault(__webpack_require__(/*! ./packageProfile/pickup-code/pickup-code.vue */ 225)); | |
| 17 | 17 | // @ts-ignore |
| 18 | 18 | wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__; |
| 19 | 19 | createPage(_pickupCode.default); |
| ... | ... | @@ -21,7 +21,7 @@ createPage(_pickupCode.default); |
| 21 | 21 | |
| 22 | 22 | /***/ }), |
| 23 | 23 | |
| 24 | -/***/ 247: | |
| 24 | +/***/ 225: | |
| 25 | 25 | /*!*******************************************************************************************************!*\ |
| 26 | 26 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue ***! |
| 27 | 27 | \*******************************************************************************************************/ |
| ... | ... | @@ -30,10 +30,10 @@ createPage(_pickupCode.default); |
| 30 | 30 | |
| 31 | 31 | "use strict"; |
| 32 | 32 | __webpack_require__.r(__webpack_exports__); |
| 33 | -/* harmony import */ var _pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& */ 248); | |
| 34 | -/* harmony import */ var _pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=script&lang=js& */ 250); | |
| 33 | +/* harmony import */ var _pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& */ 226); | |
| 34 | +/* harmony import */ var _pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=script&lang=js& */ 228); | |
| 35 | 35 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 36 | -/* harmony import */ var _pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& */ 252); | |
| 36 | +/* harmony import */ var _pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& */ 230); | |
| 37 | 37 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 36); |
| 38 | 38 | |
| 39 | 39 | var renderjs |
| ... | ... | @@ -62,7 +62,7 @@ component.options.__file = "packageProfile/pickup-code/pickup-code.vue" |
| 62 | 62 | |
| 63 | 63 | /***/ }), |
| 64 | 64 | |
| 65 | -/***/ 248: | |
| 65 | +/***/ 226: | |
| 66 | 66 | /*!**************************************************************************************************************************************************!*\ |
| 67 | 67 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& ***! |
| 68 | 68 | \**************************************************************************************************************************************************/ |
| ... | ... | @@ -71,7 +71,7 @@ component.options.__file = "packageProfile/pickup-code/pickup-code.vue" |
| 71 | 71 | |
| 72 | 72 | "use strict"; |
| 73 | 73 | __webpack_require__.r(__webpack_exports__); |
| 74 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& */ 249); | |
| 74 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& */ 227); | |
| 75 | 75 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; }); |
| 76 | 76 | |
| 77 | 77 | /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_template_id_47bf0baf_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; }); |
| ... | ... | @@ -84,7 +84,7 @@ __webpack_require__.r(__webpack_exports__); |
| 84 | 84 | |
| 85 | 85 | /***/ }), |
| 86 | 86 | |
| 87 | -/***/ 249: | |
| 87 | +/***/ 227: | |
| 88 | 88 | /*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 89 | 89 | !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=template&id=47bf0baf&scoped=true& ***! |
| 90 | 90 | \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -120,7 +120,7 @@ render._withStripped = true |
| 120 | 120 | |
| 121 | 121 | /***/ }), |
| 122 | 122 | |
| 123 | -/***/ 250: | |
| 123 | +/***/ 228: | |
| 124 | 124 | /*!********************************************************************************************************************************!*\ |
| 125 | 125 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=script&lang=js& ***! |
| 126 | 126 | \********************************************************************************************************************************/ |
| ... | ... | @@ -129,14 +129,14 @@ render._withStripped = true |
| 129 | 129 | |
| 130 | 130 | "use strict"; |
| 131 | 131 | __webpack_require__.r(__webpack_exports__); |
| 132 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=script&lang=js& */ 251); | |
| 132 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=script&lang=js& */ 229); | |
| 133 | 133 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__); |
| 134 | 134 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 135 | 135 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 136 | 136 | |
| 137 | 137 | /***/ }), |
| 138 | 138 | |
| 139 | -/***/ 251: | |
| 139 | +/***/ 229: | |
| 140 | 140 | /*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 141 | 141 | !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=script&lang=js& ***! |
| 142 | 142 | \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -298,7 +298,7 @@ exports.default = _default; |
| 298 | 298 | |
| 299 | 299 | /***/ }), |
| 300 | 300 | |
| 301 | -/***/ 252: | |
| 301 | +/***/ 230: | |
| 302 | 302 | /*!*****************************************************************************************************************************************************************!*\ |
| 303 | 303 | !*** /Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& ***! |
| 304 | 304 | \*****************************************************************************************************************************************************************/ |
| ... | ... | @@ -307,14 +307,14 @@ exports.default = _default; |
| 307 | 307 | |
| 308 | 308 | "use strict"; |
| 309 | 309 | __webpack_require__.r(__webpack_exports__); |
| 310 | -/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& */ 253); | |
| 310 | +/* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& */ 231); | |
| 311 | 311 | /* harmony import */ var _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); |
| 312 | 312 | /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); |
| 313 | 313 | /* harmony default export */ __webpack_exports__["default"] = (_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Applications_HBuilderX_app_Contents_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_pickup_code_vue_vue_type_style_index_0_id_47bf0baf_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); |
| 314 | 314 | |
| 315 | 315 | /***/ }), |
| 316 | 316 | |
| 317 | -/***/ 253: | |
| 317 | +/***/ 231: | |
| 318 | 318 | /*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
| 319 | 319 | !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!./node_modules/postcss-loader/src??ref--8-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!/Users/mr.wang/代码库/绿纤/lvqianmeiye_ERP/member-miniapp/packageProfile/pickup-code/pickup-code.vue?vue&type=style&index=0&id=47bf0baf&lang=scss&scoped=true& ***! |
| 320 | 320 | \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
| ... | ... | @@ -327,5 +327,5 @@ __webpack_require__.r(__webpack_exports__); |
| 327 | 327 | |
| 328 | 328 | /***/ }) |
| 329 | 329 | |
| 330 | -},[[246,"common/runtime","common/vendor"]]]); | |
| 330 | +},[[224,"common/runtime","common/vendor"]]]); | |
| 331 | 331 | //# sourceMappingURL=../../../.sourcemap/mp-weixin/packageProfile/pickup-code/pickup-code.js.map |
| 332 | 332 | \ No newline at end of file | ... | ... |
netcore/smart.agriculture.platform.NET.sln
| 1 | - | |
| 1 | + | |
| 2 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 |
| 3 | 3 | # Visual Studio Version 17 |
| 4 | 4 | VisualStudioVersion = 17.2.32526.322 |
| ... | ... | @@ -6,6 +6,8 @@ MinimumVisualStudioVersion = 10.0.40219.1 |
| 6 | 6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "01-安第斯基础模块", "01-安第斯基础模块", "{0ECDF340-749A-49C2-9F02-BE36D0235651}" |
| 7 | 7 | EndProject |
| 8 | 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "02-应用模块-完整", "02-应用模块-完整", "{DEE60693-575B-43FA-B7AB-60B6045B632C}" |
| 9 | + ProjectSection(SolutionItems) = preProject | |
| 10 | + EndProjectSection | |
| 9 | 11 | EndProject |
| 10 | 12 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "04-应用服务", "04-应用服务", "{A0F27F69-7064-4E75-B05E-F3205F253BA3}" |
| 11 | 13 | EndProject | ... | ... |
netcore/src/Application/NCC.API.Core/NCC.API.Core.csproj
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> | |
| 2 | 2 | |
| 3 | 3 | <PropertyGroup> |
| 4 | 4 | <TargetFramework>net6.0</TargetFramework> |
| ... | ... | @@ -12,6 +12,7 @@ |
| 12 | 12 | <ProjectReference Include="..\..\Modularity\System\NCC.System\NCC.System.csproj" /> |
| 13 | 13 | <ProjectReference Include="..\..\Modularity\TaskSchedule\NCC.TaskScheduler\NCC.TaskScheduler.csproj" /> |
| 14 | 14 | <ProjectReference Include="..\..\Modularity\VisualData\NCC.VisualData\NCC.VisualData.csproj" /> |
| 15 | + <ProjectReference Include="..\..\Modularity\WorkFlow\NCC.WorkFlow\NCC.WorkFlow.csproj" /> | |
| 15 | 16 | <ProjectReference Include="..\..\Modularity\VisualDev\NCC.VisualDev.Run.Core\NCC.VisualDev.Run.Core.csproj" /> |
| 16 | 17 | <ProjectReference Include="..\..\Modularity\VisualDev\NCC.VisualDev\NCC.VisualDev.csproj" /> |
| 17 | 18 | </ItemGroup> | ... | ... |
netcore/src/Modularity/Extend/NCC.Extend.Interfaces/LqAttendanceRecord/ILqAttendanceRecordService.cs
| ... | ... | @@ -31,6 +31,12 @@ namespace NCC.Extend.Interfaces.LqAttendanceRecord |
| 31 | 31 | Task<dynamic> GetDetail(LqAttendanceRecordDetailQueryInput input); |
| 32 | 32 | |
| 33 | 33 | /// <summary> |
| 34 | + /// 获取当前登录用户打卡配置 | |
| 35 | + /// </summary> | |
| 36 | + /// <returns>当前用户考勤规则与门店围栏配置</returns> | |
| 37 | + Task<dynamic> GetCurrentPunchConfig(); | |
| 38 | + | |
| 39 | + /// <summary> | |
| 34 | 40 | /// 后台补卡 |
| 35 | 41 | /// </summary> |
| 36 | 42 | /// <param name="input">补卡参数</param> | ... | ... |
netcore/src/Modularity/Extend/NCC.Extend/LqAttendanceRecordService.cs
| ... | ... | @@ -269,6 +269,73 @@ namespace NCC.Extend |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /// <summary> |
| 272 | + /// 获取当前登录用户打卡配置 | |
| 273 | + /// </summary> | |
| 274 | + /// <remarks> | |
| 275 | + /// 返回当前登录用户的考勤分组规则、今日是否公休/免考勤,以及所属门店的经纬度、电子围栏、营业时间和交通提示。 | |
| 276 | + /// 主要用于打卡页面初始化时一次性加载规则与围栏数据。 | |
| 277 | + /// </remarks> | |
| 278 | + /// <returns>当前用户考勤规则与门店围栏配置</returns> | |
| 279 | + [HttpGet("CurrentPunchConfig")] | |
| 280 | + public async Task<dynamic> GetCurrentPunchConfig() | |
| 281 | + { | |
| 282 | + var currentUser = await _userManager.GetUserInfo(); | |
| 283 | + var userId = currentUser?.userId ?? _userManager?.UserId; | |
| 284 | + if (string.IsNullOrWhiteSpace(userId)) | |
| 285 | + { | |
| 286 | + throw NCCException.Oh("未获取到当前登录用户信息"); | |
| 287 | + } | |
| 288 | + | |
| 289 | + var user = await GetAttendanceUserAsync(userId, false); | |
| 290 | + var store = await GetStoreAsync(user.Mdid); | |
| 291 | + var group = await GetAttendanceGroupAsync(user.AttendanceGroupId, false); | |
| 292 | + var today = DateTime.Today; | |
| 293 | + var lateRules = await GetLateRulesAsync(); | |
| 294 | + var isHoliday = await IsHolidayAsync(today); | |
| 295 | + var isExempt = await IsExemptAsync(userId, today); | |
| 296 | + var statusContext = ResolveAttendanceStatus( | |
| 297 | + today, | |
| 298 | + group, | |
| 299 | + lateRules, | |
| 300 | + (int)AttendanceRecordStatusEnum.正常, | |
| 301 | + null, | |
| 302 | + null, | |
| 303 | + null, | |
| 304 | + null, | |
| 305 | + isHoliday, | |
| 306 | + isExempt); | |
| 307 | + | |
| 308 | + var allRuleSnapshotJson = await BuildAllRuleSnapshotJsonAsync(today, userId, group, lateRules, statusContext, isHoliday, isExempt); | |
| 309 | + var allRuleSnapshot = string.IsNullOrWhiteSpace(allRuleSnapshotJson) | |
| 310 | + ? null | |
| 311 | + : JToken.Parse(allRuleSnapshotJson); | |
| 312 | + | |
| 313 | + return new | |
| 314 | + { | |
| 315 | + serverTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), | |
| 316 | + attendanceDate = today.ToString("yyyy-MM-dd"), | |
| 317 | + isHoliday, | |
| 318 | + isExempt, | |
| 319 | + user = new | |
| 320 | + { | |
| 321 | + userId = user.Id, | |
| 322 | + account = user.Account, | |
| 323 | + userName = user.RealName, | |
| 324 | + mobilePhone = user.MobilePhone, | |
| 325 | + entryDate = user.EntryDate?.ToString("yyyy-MM-dd"), | |
| 326 | + attendanceGroupId = user.AttendanceGroupId, | |
| 327 | + storeId = user.Mdid, | |
| 328 | + isOnJob = user.IsOnJob ?? 1, | |
| 329 | + isOnJobText = (user.IsOnJob ?? 1) == 1 ? "在职" : "离职" | |
| 330 | + }, | |
| 331 | + attendanceGroup = BuildAttendanceGroupSnapshot(group), | |
| 332 | + storeFence = BuildStoreFenceSnapshot(store), | |
| 333 | + allRuleSnapshotJson, | |
| 334 | + allRuleSnapshot | |
| 335 | + }; | |
| 336 | + } | |
| 337 | + | |
| 338 | + /// <summary> | |
| 272 | 339 | /// 后台补卡 |
| 273 | 340 | /// </summary> |
| 274 | 341 | /// <remarks> |
| ... | ... | @@ -1450,6 +1517,28 @@ namespace NCC.Extend |
| 1450 | 1517 | }; |
| 1451 | 1518 | } |
| 1452 | 1519 | |
| 1520 | + private static object BuildStoreFenceSnapshot(LqMdxxEntity entity) | |
| 1521 | + { | |
| 1522 | + if (entity == null) | |
| 1523 | + { | |
| 1524 | + return null; | |
| 1525 | + } | |
| 1526 | + | |
| 1527 | + return new | |
| 1528 | + { | |
| 1529 | + storeId = entity.Id, | |
| 1530 | + storeCode = entity.Mdbm, | |
| 1531 | + storeName = entity.Dm, | |
| 1532 | + address = entity.Dz, | |
| 1533 | + longitude = entity.Longitude, | |
| 1534 | + latitude = entity.Latitude, | |
| 1535 | + fencePolygons = entity.FencePolygons, | |
| 1536 | + hasFence = !string.IsNullOrWhiteSpace(entity.FencePolygons), | |
| 1537 | + businessHours = entity.BusinessHours, | |
| 1538 | + trafficTips = entity.TrafficTips | |
| 1539 | + }; | |
| 1540 | + } | |
| 1541 | + | |
| 1453 | 1542 | private static object BuildHolidaySnapshot(LqAttendanceHolidayEntity entity) |
| 1454 | 1543 | { |
| 1455 | 1544 | if (entity == null) | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowBefore/FlowBeforeInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using NCC.WorkFlow.Entitys.Model.Properties; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.FlowBefore | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class FlowBeforeInfoOutput | |
| 10 | + { | |
| 11 | + /// <summary> | |
| 12 | + /// 表单json | |
| 13 | + /// </summary> | |
| 14 | + public string flowFormInfo { get; set; } | |
| 15 | + /// <summary> | |
| 16 | + /// 流程任务 | |
| 17 | + /// </summary> | |
| 18 | + public FlowTaskModel flowTaskInfo { get; set; } | |
| 19 | + /// <summary> | |
| 20 | + /// 流程任务节点 | |
| 21 | + /// </summary> | |
| 22 | + public List<FlowTaskNodeModel> flowTaskNodeList { get; set; } | |
| 23 | + /// <summary> | |
| 24 | + /// 流程任务经办 | |
| 25 | + /// </summary> | |
| 26 | + public List<FlowTaskOperatorModel> flowTaskOperatorList { get; set; } | |
| 27 | + /// <summary> | |
| 28 | + /// 流程任务经办记录 | |
| 29 | + /// </summary> | |
| 30 | + public List<FlowTaskOperatorRecordModel> flowTaskOperatorRecordList { get; set; } | |
| 31 | + /// <summary> | |
| 32 | + /// 当前节点权限 | |
| 33 | + /// </summary> | |
| 34 | + public List<FormOperatesModel> formOperates { get; set; } = new List<FormOperatesModel>(); | |
| 35 | + /// <summary> | |
| 36 | + /// 当前节点属性 | |
| 37 | + /// </summary> | |
| 38 | + public ApproversProperties approversProperties { get; set; } = new ApproversProperties(); | |
| 39 | + } | |
| 40 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowBefore/FlowBeforeListOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowBefore | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowBeforeListOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 编码 | |
| 11 | + /// </summary> | |
| 12 | + public string enCode { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 创建人 | |
| 15 | + /// </summary> | |
| 16 | + public string creatorUserId { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 创建时间 | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? creatorTime { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 当前节点名 | |
| 23 | + /// </summary> | |
| 24 | + public string thisStep { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 流程分类 | |
| 27 | + /// </summary> | |
| 28 | + public string flowCategory { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 名称 | |
| 31 | + /// </summary> | |
| 32 | + public string fullName { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 引擎名称 | |
| 35 | + /// </summary> | |
| 36 | + public string flowName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 状态 | |
| 39 | + /// </summary> | |
| 40 | + public int? status { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 发起时间 | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? startTime { get; set; } | |
| 45 | + | |
| 46 | + /// <summary> | |
| 47 | + /// id | |
| 48 | + /// </summary> | |
| 49 | + public string id { get; set; } | |
| 50 | + /// <summary> | |
| 51 | + /// 发起人 | |
| 52 | + /// </summary> | |
| 53 | + public string userName { get; set; } | |
| 54 | + /// <summary> | |
| 55 | + /// 说明 | |
| 56 | + /// </summary> | |
| 57 | + public string description { get; set; } | |
| 58 | + /// <summary> | |
| 59 | + /// 引擎编码 | |
| 60 | + /// </summary> | |
| 61 | + public string flowCode { get; set; } | |
| 62 | + /// <summary> | |
| 63 | + /// 引擎id | |
| 64 | + /// </summary> | |
| 65 | + public string flowId { get; set; } | |
| 66 | + /// <summary> | |
| 67 | + /// 实例id | |
| 68 | + /// </summary> | |
| 69 | + public string processId { get; set; } | |
| 70 | + /// <summary> | |
| 71 | + /// 表单类型 | |
| 72 | + /// </summary> | |
| 73 | + public int? formType { get; set; } | |
| 74 | + /// <summary> | |
| 75 | + /// 表单Json | |
| 76 | + /// </summary> | |
| 77 | + public string formData { get; set; } | |
| 78 | + /// <summary> | |
| 79 | + /// 紧急程度 | |
| 80 | + /// </summary> | |
| 81 | + public int? flowUrgent { get; set; } | |
| 82 | + | |
| 83 | + /// <summary> | |
| 84 | + /// 当前节点id | |
| 85 | + /// </summary> | |
| 86 | + public string thisStepId { get; set; } | |
| 87 | + | |
| 88 | + /// <summary> | |
| 89 | + /// 流程进度 | |
| 90 | + /// </summary> | |
| 91 | + public int? completion { get; set; } | |
| 92 | + } | |
| 93 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowBefore/FlowBeforeListQuery.cs
0 → 100644
| 1 | +using NCC.Common.Filter; | |
| 2 | +using NCC.Dependency; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowBefore | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowBeforeListQuery : PageInputBase | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 开始时间 | |
| 11 | + /// </summary> | |
| 12 | + public long? startTime { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 结束时间 | |
| 15 | + /// </summary> | |
| 16 | + public long? endTime { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 引擎id | |
| 19 | + /// </summary> | |
| 20 | + public string flowId { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 引擎分类 | |
| 23 | + /// </summary> | |
| 24 | + public string flowCategory { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 创建人 | |
| 27 | + /// </summary> | |
| 28 | + public string creatorUserId { get; set; } | |
| 29 | + } | |
| 30 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowDelegate/FlowDelegeteCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowDelegete | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowDelegeteCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 描述 | |
| 11 | + /// </summary> | |
| 12 | + public string description { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 结束时间 | |
| 15 | + /// </summary> | |
| 16 | + public DateTime? endTime { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 流程分类 | |
| 19 | + /// </summary> | |
| 20 | + public string flowCategory { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 委托流程 | |
| 23 | + /// </summary> | |
| 24 | + public string flowId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 委托流程名称 | |
| 27 | + /// </summary> | |
| 28 | + public string flowName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 开始时间 | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? startTime { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 被委托人 | |
| 35 | + /// </summary> | |
| 36 | + public string toUserName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 被委托人id | |
| 39 | + /// </summary> | |
| 40 | + public string toUserId { get; set; } | |
| 41 | + } | |
| 42 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowDelegate/FlowDelegeteInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowDelegete | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowDelegeteInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 描述 | |
| 11 | + /// </summary> | |
| 12 | + public string description { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 结束时间 | |
| 15 | + /// </summary> | |
| 16 | + public DateTime? endTime { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 流程分类 | |
| 19 | + /// </summary> | |
| 20 | + public string flowCategory { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 委托流程 | |
| 23 | + /// </summary> | |
| 24 | + public string flowId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 委托名称 | |
| 27 | + /// </summary> | |
| 28 | + public string flowName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 主键id | |
| 31 | + /// </summary> | |
| 32 | + public string id { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 开始时间 | |
| 35 | + /// </summary> | |
| 36 | + public DateTime? startTime { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 被委托人名 | |
| 39 | + /// </summary> | |
| 40 | + public string toUserName { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 被委托人id | |
| 43 | + /// </summary> | |
| 44 | + public string toUserId { get; set; } | |
| 45 | + } | |
| 46 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowDelegate/FlowDelegeteListOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowDelegete | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowDelegeteListOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 创建时间 | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? creatorTime { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 创建用户 | |
| 15 | + /// </summary> | |
| 16 | + public string creatorUserId { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 删除标志 | |
| 19 | + /// </summary> | |
| 20 | + public int? deleteMark { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 删除时间 | |
| 23 | + /// </summary> | |
| 24 | + public DateTime? deleteTime { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 删除用户 | |
| 27 | + /// </summary> | |
| 28 | + public string deleteUserId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 描述 | |
| 31 | + /// </summary> | |
| 32 | + public string description { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 有效标志 | |
| 35 | + /// </summary> | |
| 36 | + public int enabledMark { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 结束时间 | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? endTime { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 流程分类 | |
| 43 | + /// </summary> | |
| 44 | + public string flowCategory { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// 委托流程 | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// 委托流程名称 | |
| 51 | + /// </summary> | |
| 52 | + public string flowName { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// 自然主键 | |
| 55 | + /// </summary> | |
| 56 | + public string id { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// 修改时间 | |
| 59 | + /// </summary> | |
| 60 | + public DateTime? lastModifyTime { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// 修改用户 | |
| 63 | + /// </summary> | |
| 64 | + public string lastModifyUserId { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// 排序码 | |
| 67 | + /// </summary> | |
| 68 | + public long? sortCode { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// 开始时间 | |
| 71 | + /// </summary> | |
| 72 | + public DateTime? startTime { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// 被委托人名字 | |
| 75 | + /// </summary> | |
| 76 | + public string toUserName { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// 被委托人 | |
| 79 | + /// </summary> | |
| 80 | + public string toUserId { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowDelegate/FlowDelegeteUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System.ComponentModel.DataAnnotations; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowEngine | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowEngineCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 流程名称 | |
| 11 | + /// </summary> | |
| 12 | + public string fullName { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 流程编号 | |
| 15 | + /// </summary> | |
| 16 | + public string enCode { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 排序码 | |
| 19 | + /// </summary> | |
| 20 | + public long? sortCode { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 表单类型(数据字典-流程表单类型) | |
| 23 | + /// </summary> | |
| 24 | + public int? formType { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 流程分类(数据字典-工作流-流程分类) | |
| 27 | + /// </summary> | |
| 28 | + public string category { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 流程类型(数据字典-工作流-流程类型) | |
| 31 | + /// </summary> | |
| 32 | + public int? type { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 图标 | |
| 35 | + /// </summary> | |
| 36 | + public string icon { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 图标背景 | |
| 39 | + /// </summary> | |
| 40 | + public string iconBackground { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 说明 | |
| 43 | + /// </summary> | |
| 44 | + public string description { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// 状态(0-关闭,1-开启) | |
| 47 | + /// </summary> | |
| 48 | + public int? enabledMark { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// 表单JSON包 | |
| 51 | + /// </summary> | |
| 52 | + public string formData { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// 流程JOSN包 | |
| 55 | + /// </summary> | |
| 56 | + public string flowTemplateJson { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// 表信息数据 | |
| 59 | + /// </summary> | |
| 60 | + public string tables { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// 数据库连接id | |
| 63 | + /// </summary> | |
| 64 | + public string dbLinkId { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// app地址 | |
| 67 | + /// </summary> | |
| 68 | + public string appFormUrl { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// 表单地址 | |
| 71 | + /// </summary> | |
| 72 | + public string formUrl { get; set; } | |
| 73 | + } | |
| 74 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineInfoInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | + | |
| 3 | +namespace NCC.WorkFlow.Entitys.Dto.FlowEngine | |
| 4 | +{ | |
| 5 | + [SuppressSniffer] | |
| 6 | + public class FlowEngineInfoOutput | |
| 7 | + { | |
| 8 | + /// <summary> | |
| 9 | + /// 主键id | |
| 10 | + /// </summary> | |
| 11 | + public string id { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// 流程名称 | |
| 14 | + /// </summary> | |
| 15 | + public string fullName { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// 流程编号 | |
| 18 | + /// </summary> | |
| 19 | + public string enCode { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// 排序码 | |
| 22 | + /// </summary> | |
| 23 | + public long? sortCode { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// 表单类型(数据字典-流程表单类型) | |
| 26 | + /// </summary> | |
| 27 | + public int? formType { get; set; } | |
| 28 | + /// <summary> | |
| 29 | + /// 流程分类(数据字典-工作流-流程分类) | |
| 30 | + /// </summary> | |
| 31 | + public string category { get; set; } | |
| 32 | + /// <summary> | |
| 33 | + /// 流程类型(数据字典-工作流-流程类型) | |
| 34 | + /// </summary> | |
| 35 | + public int? type { get; set; } | |
| 36 | + /// <summary> | |
| 37 | + /// 图标 | |
| 38 | + /// </summary> | |
| 39 | + public string icon { get; set; } | |
| 40 | + /// <summary> | |
| 41 | + /// 图标背景 | |
| 42 | + /// </summary> | |
| 43 | + public string iconBackground { get; set; } | |
| 44 | + /// <summary> | |
| 45 | + /// 说明 | |
| 46 | + /// </summary> | |
| 47 | + public string description { get; set; } | |
| 48 | + /// <summary> | |
| 49 | + /// 状态(0-关闭,1-开启) | |
| 50 | + /// </summary> | |
| 51 | + public int? enabledMark { get; set; } | |
| 52 | + /// <summary> | |
| 53 | + /// 表单JSON包 | |
| 54 | + /// </summary> | |
| 55 | + public string formData { get; set; } | |
| 56 | + /// <summary> | |
| 57 | + /// 流程JOSN包 | |
| 58 | + /// </summary> | |
| 59 | + public string flowTemplateJson { get; set; } | |
| 60 | + /// <summary> | |
| 61 | + /// 关联表信息 | |
| 62 | + /// </summary> | |
| 63 | + public string tables { get; set; } | |
| 64 | + /// <summary> | |
| 65 | + /// 版本 | |
| 66 | + /// </summary> | |
| 67 | + public string version { get; set; } | |
| 68 | + /// <summary> | |
| 69 | + /// 版本类型 | |
| 70 | + /// </summary> | |
| 71 | + public string visibleType { get; set; } | |
| 72 | + /// <summary> | |
| 73 | + /// 数据库连接id | |
| 74 | + /// </summary> | |
| 75 | + public string dbLinkId { get; set; } = "0"; | |
| 76 | + /// <summary> | |
| 77 | + /// app链接 | |
| 78 | + /// </summary> | |
| 79 | + public string appFormUrl { get; set; } | |
| 80 | + /// <summary> | |
| 81 | + /// pc链接 | |
| 82 | + /// </summary> | |
| 83 | + public string formUrl { get; set; } | |
| 84 | + } | |
| 85 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineListAllOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowEngine | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowEngineListAllOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// id | |
| 11 | + /// </summary> | |
| 12 | + public string id { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 流程编号 | |
| 15 | + /// </summary> | |
| 16 | + public string enCode { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 流程名称 | |
| 19 | + /// </summary> | |
| 20 | + public string fullName { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 流程类型(数据字典-工作流-流程类型) | |
| 23 | + /// </summary> | |
| 24 | + public int? type { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 流程分类(数据字典-工作流-流程分类) | |
| 27 | + /// </summary> | |
| 28 | + public string category { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 表单类型(数据字典-流程表单类型) | |
| 31 | + /// </summary> | |
| 32 | + public int? formType { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 表单JSON包 | |
| 35 | + /// </summary> | |
| 36 | + public string formData { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 版本类型 | |
| 39 | + /// </summary> | |
| 40 | + public int? visibleType { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 图标 | |
| 43 | + /// </summary> | |
| 44 | + public string icon { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// 图标背景 | |
| 47 | + /// </summary> | |
| 48 | + public string iconBackground { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// 流程JOSN包 | |
| 51 | + /// </summary> | |
| 52 | + public string flowTemplateJson { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// 创建人 | |
| 55 | + /// </summary> | |
| 56 | + public string creatorUser { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// 创建时间 | |
| 59 | + /// </summary> | |
| 60 | + public DateTime? creatorTime { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// 修改人 | |
| 63 | + /// </summary> | |
| 64 | + public string lastModifyUser { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// 修改时间 | |
| 67 | + /// </summary> | |
| 68 | + public DateTime? lastModifyTime { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// 说明 | |
| 71 | + /// </summary> | |
| 72 | + public string description { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// 标识 | |
| 75 | + /// </summary> | |
| 76 | + public int? enabledMark { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// 排序码 | |
| 79 | + /// </summary> | |
| 80 | + public long? sortCode { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineListOutput.cs
0 → 100644
| 1 | +using NCC.Common.Util; | |
| 2 | +using NCC.Dependency; | |
| 3 | +using System; | |
| 4 | + | |
| 5 | +namespace NCC.WorkFlow.Entitys.Dto.FlowEngine | |
| 6 | +{ | |
| 7 | + [SuppressSniffer] | |
| 8 | + public class FlowEngineListOutput:TreeModel | |
| 9 | + { | |
| 10 | + /// <summary> | |
| 11 | + /// 流程名称 | |
| 12 | + /// </summary> | |
| 13 | + public string fullName { get; set; } | |
| 14 | + /// <summary> | |
| 15 | + /// 流程编号 | |
| 16 | + /// </summary> | |
| 17 | + public string enCode { get; set; } | |
| 18 | + /// <summary> | |
| 19 | + /// 排序码 | |
| 20 | + /// </summary> | |
| 21 | + public long? sortCode { get; set; } | |
| 22 | + /// <summary> | |
| 23 | + /// 表单类型(数据字典-流程表单类型) | |
| 24 | + /// </summary> | |
| 25 | + public int? formType { get; set; } | |
| 26 | + /// <summary> | |
| 27 | + /// 创建人 | |
| 28 | + /// </summary> | |
| 29 | + public string creatorUser { get; set; } | |
| 30 | + /// <summary> | |
| 31 | + /// 创建时间 | |
| 32 | + /// </summary> | |
| 33 | + public DateTime? creatorTime { get; set; } | |
| 34 | + /// <summary> | |
| 35 | + /// 修改人 | |
| 36 | + /// </summary> | |
| 37 | + public string lastModifyUser { get; set; } | |
| 38 | + /// <summary> | |
| 39 | + /// 修改时间 | |
| 40 | + /// </summary> | |
| 41 | + public DateTime? lastModifyTime { get; set; } | |
| 42 | + /// <summary> | |
| 43 | + /// 说明 | |
| 44 | + /// </summary> | |
| 45 | + public string description { get; set; } | |
| 46 | + /// <summary> | |
| 47 | + /// 状态(0-关闭,1-开启) | |
| 48 | + /// </summary> | |
| 49 | + public int? enabledMark { get; set; } | |
| 50 | + /// <summary> | |
| 51 | + /// 流程分类(数据字典-工作流-流程分类) | |
| 52 | + /// </summary> | |
| 53 | + public string category { get; set; } | |
| 54 | + /// <summary> | |
| 55 | + /// 流程JOSN包 | |
| 56 | + /// </summary> | |
| 57 | + public string flowTemplateJson { get; set; } | |
| 58 | + /// <summary> | |
| 59 | + /// 表单JSON包 | |
| 60 | + /// </summary> | |
| 61 | + public string formData { get; set; } | |
| 62 | + /// <summary> | |
| 63 | + /// 图标 | |
| 64 | + /// </summary> | |
| 65 | + public string icon { get; set; } | |
| 66 | + /// <summary> | |
| 67 | + /// 图标背景 | |
| 68 | + /// </summary> | |
| 69 | + public string iconBackground { get; set; } | |
| 70 | + /// <summary> | |
| 71 | + /// 流程类型(数据字典-工作流-流程类型) | |
| 72 | + /// </summary> | |
| 73 | + public int? type { get; set; } | |
| 74 | + /// <summary> | |
| 75 | + /// 版本类型 | |
| 76 | + /// </summary> | |
| 77 | + public int? visibleType { get; set; } | |
| 78 | + | |
| 79 | + } | |
| 80 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineListSelectOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | + | |
| 3 | +namespace NCC.WorkFlow.Entitys.Dto.FlowEngine | |
| 4 | +{ | |
| 5 | + [SuppressSniffer] | |
| 6 | + public class FlowEngineListSelectOutput | |
| 7 | + { | |
| 8 | + /// <summary> | |
| 9 | + /// id | |
| 10 | + /// </summary> | |
| 11 | + public string id { get; set; } | |
| 12 | + | |
| 13 | + /// <summary> | |
| 14 | + /// 流程名称 | |
| 15 | + /// </summary> | |
| 16 | + public string fullName { get; set; } | |
| 17 | + | |
| 18 | + } | |
| 19 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowLaunch/FlowLaunchActionWithdrawInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowLaunch/FlowLaunchListOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowLaunch | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowLaunchListOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 编码 | |
| 11 | + /// </summary> | |
| 12 | + public string enCode { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 创建人 | |
| 15 | + /// </summary> | |
| 16 | + public string creatorUserId { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 创建时间 | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? creatorTime { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 当前节点 | |
| 23 | + /// </summary> | |
| 24 | + public string thisStep { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 流程分类 | |
| 27 | + /// </summary> | |
| 28 | + public string flowCategory { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 名称 | |
| 31 | + /// </summary> | |
| 32 | + public string fullName { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 流程名称 | |
| 35 | + /// </summary> | |
| 36 | + public string flowName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 状态 | |
| 39 | + /// </summary> | |
| 40 | + public int? status { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 开始时间 | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? startTime { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// id | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// 结束时间 | |
| 51 | + /// </summary> | |
| 52 | + public DateTime? endTime { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// 完成度 | |
| 55 | + /// </summary> | |
| 56 | + public int? completion { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// 备注 | |
| 59 | + /// </summary> | |
| 60 | + public string description { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// 流程编码 | |
| 63 | + /// </summary> | |
| 64 | + public string flowCode { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// 流程id | |
| 67 | + /// </summary> | |
| 68 | + public string flowId { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// 表单分类 | |
| 71 | + /// </summary> | |
| 72 | + public int? formType { get; set; } = 2; | |
| 73 | + /// <summary> | |
| 74 | + /// 表单json | |
| 75 | + /// </summary> | |
| 76 | + public string formData { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// 委托节点id(待审页面使用,其他默认为0) | |
| 79 | + /// </summary> | |
| 80 | + public string delegateId { get; set; } = "0"; | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowLaunch/FlowLaunchListQuery.cs
0 → 100644
| 1 | +using NCC.Common.Filter; | |
| 2 | +using NCC.Dependency; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowLaunch | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowLaunchListQuery : PageInputBase | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 所属分类 | |
| 11 | + /// </summary> | |
| 12 | + public string flowCategory { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 所属流程 | |
| 15 | + /// </summary> | |
| 16 | + public string flowId { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 开始时间 | |
| 19 | + /// </summary> | |
| 20 | + public long? startTime { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 结束时间 | |
| 23 | + /// </summary> | |
| 24 | + public long? endTime { get; set; } | |
| 25 | + } | |
| 26 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowMonitor/FlowMonitorDeleteInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowMonitor/FlowMonitorListOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowMonitor | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowMonitorListOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// 流程编码 | |
| 11 | + /// </summary> | |
| 12 | + public string enCode { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// 发起人员id | |
| 15 | + /// </summary> | |
| 16 | + public string creatorUserId { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// 创建时间 | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? creatorTime { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// 当前节点 | |
| 23 | + /// </summary> | |
| 24 | + public string thisStep { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// 所属分类 | |
| 27 | + /// </summary> | |
| 28 | + public string flowCategory { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// 流程标题 | |
| 31 | + /// </summary> | |
| 32 | + public string fullName { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// 所属流程 | |
| 35 | + /// </summary> | |
| 36 | + public string flowName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// 流程状态 | |
| 39 | + /// </summary> | |
| 40 | + public int? status { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// 开始时间 | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? startTime { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// 主键id | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// 流程主键 | |
| 51 | + /// </summary> | |
| 52 | + public string flowId { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// 流程编码 | |
| 55 | + /// </summary> | |
| 56 | + public string flowCode { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// 实例进程 | |
| 59 | + /// </summary> | |
| 60 | + public string processId { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// 完成情况 | |
| 63 | + /// </summary> | |
| 64 | + public int? completion { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// 用户名称 | |
| 67 | + /// </summary> | |
| 68 | + public string userName{ get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// 描述 | |
| 71 | + /// </summary> | |
| 72 | + public string description { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// 表单类型 1-系统表单、2-动态表单 | |
| 75 | + /// </summary> | |
| 76 | + public int? formType { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// 表单数据 | |
| 79 | + /// </summary> | |
| 80 | + public string formData { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// 紧急程度 | |
| 83 | + /// </summary> | |
| 84 | + public int? formUrgent { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// 委托节点id(待审页面使用,其他默认为0) | |
| 87 | + /// </summary> | |
| 88 | + public string delegateId { get; set; } = "0"; | |
| 89 | + } | |
| 90 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowMonitor/FlowMonitorListQuery.cs
0 → 100644
| 1 | +using NCC.Common.Filter; | |
| 2 | +using NCC.Dependency; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.FlowMonitor | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class FlowMonitorListQuery : PageInputBase | |
| 8 | + { | |
| 9 | + | |
| 10 | + /// <summary> | |
| 11 | + /// 发起人员id | |
| 12 | + /// </summary> | |
| 13 | + public string creatorUserId { get; set; } | |
| 14 | + | |
| 15 | + /// <summary> | |
| 16 | + /// 所属分类 | |
| 17 | + /// </summary> | |
| 18 | + public string flowCategory { get; set; } | |
| 19 | + | |
| 20 | + /// <summary> | |
| 21 | + /// 开始时间 | |
| 22 | + /// </summary> | |
| 23 | + public long? startTime { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// 开始时间 | |
| 26 | + /// </summary> | |
| 27 | + public long? endTime { get; set; } | |
| 28 | + | |
| 29 | + /// <summary> | |
| 30 | + /// 流程主键 | |
| 31 | + /// </summary> | |
| 32 | + public string flowId { get; set; } | |
| 33 | + | |
| 34 | + | |
| 35 | + } | |
| 36 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowTask/FlowTaskCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | + | |
| 3 | +namespace NCC.WorkFlow.Entitys.Dto.FlowTask | |
| 4 | +{ | |
| 5 | + [SuppressSniffer] | |
| 6 | + public class FlowTaskCrInput | |
| 7 | + { | |
| 8 | + /// <summary> | |
| 9 | + /// 引擎id | |
| 10 | + /// </summary> | |
| 11 | + public string flowId { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// 主键id | |
| 14 | + /// </summary> | |
| 15 | + public string id { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// 界面数据 | |
| 18 | + /// </summary> | |
| 19 | + public string data { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// 提交/保存 0-1 | |
| 22 | + /// </summary> | |
| 23 | + public int? status { get; set; } | |
| 24 | + } | |
| 25 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowTask/FlowTaskInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | + | |
| 3 | +namespace NCC.WorkFlow.Entitys.Dto.FlowTask | |
| 4 | +{ | |
| 5 | + [SuppressSniffer] | |
| 6 | + public class FlowTaskInfoOutput | |
| 7 | + { | |
| 8 | + /// <summary> | |
| 9 | + /// 引擎id | |
| 10 | + /// </summary> | |
| 11 | + public string flowId { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// 表单数据 | |
| 14 | + /// </summary> | |
| 15 | + public string data { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// 主键id | |
| 18 | + /// </summary> | |
| 19 | + public string id { get; set; } | |
| 20 | + | |
| 21 | + } | |
| 22 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/FlowTask/FlowTaskUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyBanquet/ApplyBanquetCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyBanquet | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ApplyBanquetCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? applyDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string applyUser { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string banquetNum { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string banquetPeople { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string description { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public double? expectedCost { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string place { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string position { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string total { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyBanquet/ApplyBanquetInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyBanquet | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ApplyBanquetInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyUser { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string banquetNum { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string banquetPeople { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string billNo { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string description { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public decimal? expectedCost { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowId { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string flowTitle { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public int? flowUrgent { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string id { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string place { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string position { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string total { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyBanquet/ApplyBanquetUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyDeliverGoods/ApplyDeliverGoodsCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyDeliverGoods | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class ApplyDeliverGoodsCrInput | |
| 10 | + { | |
| 11 | + /// <summary> | |
| 12 | + /// | |
| 13 | + /// </summary> | |
| 14 | + public string billNo { get; set; } | |
| 15 | + /// <summary> | |
| 16 | + /// | |
| 17 | + /// </summary> | |
| 18 | + public string flowId { get; set; } | |
| 19 | + /// <summary> | |
| 20 | + /// | |
| 21 | + /// </summary> | |
| 22 | + public string flowTitle { get; set; } | |
| 23 | + /// <summary> | |
| 24 | + /// | |
| 25 | + /// </summary> | |
| 26 | + public int? flowUrgent { get; set; } | |
| 27 | + /// <summary> | |
| 28 | + /// | |
| 29 | + /// </summary> | |
| 30 | + public string customerName { get; set; } | |
| 31 | + /// <summary> | |
| 32 | + /// | |
| 33 | + /// </summary> | |
| 34 | + public int? status { get; set; } | |
| 35 | + /// <summary> | |
| 36 | + /// | |
| 37 | + /// </summary> | |
| 38 | + public decimal? cargoInsurance { get; set; } | |
| 39 | + /// <summary> | |
| 40 | + /// | |
| 41 | + /// </summary> | |
| 42 | + public string contactPhone { get; set; } | |
| 43 | + /// <summary> | |
| 44 | + /// | |
| 45 | + /// </summary> | |
| 46 | + public string contacts { get; set; } | |
| 47 | + /// <summary> | |
| 48 | + /// | |
| 49 | + /// </summary> | |
| 50 | + public string customerAddres { get; set; } | |
| 51 | + /// <summary> | |
| 52 | + /// | |
| 53 | + /// </summary> | |
| 54 | + public string deliveryType { get; set; } | |
| 55 | + /// <summary> | |
| 56 | + /// | |
| 57 | + /// </summary> | |
| 58 | + public string description { get; set; } | |
| 59 | + /// <summary> | |
| 60 | + /// | |
| 61 | + /// </summary> | |
| 62 | + public decimal? freightCharges { get; set; } | |
| 63 | + /// <summary> | |
| 64 | + /// | |
| 65 | + /// </summary> | |
| 66 | + public string freightCompany { get; set; } | |
| 67 | + /// <summary> | |
| 68 | + /// | |
| 69 | + /// </summary> | |
| 70 | + public string goodsBelonged { get; set; } | |
| 71 | + /// <summary> | |
| 72 | + /// | |
| 73 | + /// </summary> | |
| 74 | + public DateTime? invoiceDate { get; set; } | |
| 75 | + /// <summary> | |
| 76 | + /// | |
| 77 | + /// </summary> | |
| 78 | + public decimal? invoiceValue { get; set; } | |
| 79 | + /// <summary> | |
| 80 | + /// | |
| 81 | + /// </summary> | |
| 82 | + public string rransportNum { get; set; } | |
| 83 | + /// <summary> | |
| 84 | + /// | |
| 85 | + /// </summary> | |
| 86 | + public List<EntryListItem> entryList { get; set; } | |
| 87 | + } | |
| 88 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyDeliverGoods/ApplyDeliverGoodsInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyDeliverGoods | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class ApplyDeliverGoodsInfoOutput | |
| 10 | + { | |
| 11 | + public string id { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// | |
| 14 | + /// </summary> | |
| 15 | + public string billNo { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// | |
| 18 | + /// </summary> | |
| 19 | + public decimal? cargoInsurance { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// | |
| 22 | + /// </summary> | |
| 23 | + public string contactPhone { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// | |
| 26 | + /// </summary> | |
| 27 | + public string contacts { get; set; } | |
| 28 | + /// <summary> | |
| 29 | + /// | |
| 30 | + /// </summary> | |
| 31 | + public string customerAddres { get; set; } | |
| 32 | + /// <summary> | |
| 33 | + /// | |
| 34 | + /// </summary> | |
| 35 | + public string customerName { get; set; } | |
| 36 | + /// <summary> | |
| 37 | + /// | |
| 38 | + /// </summary> | |
| 39 | + public string deliveryType { get; set; } | |
| 40 | + /// <summary> | |
| 41 | + /// | |
| 42 | + /// </summary> | |
| 43 | + public string description { get; set; } | |
| 44 | + /// <summary> | |
| 45 | + /// | |
| 46 | + /// </summary> | |
| 47 | + public string flowId { get; set; } | |
| 48 | + /// <summary> | |
| 49 | + /// | |
| 50 | + /// </summary> | |
| 51 | + public string flowTitle { get; set; } | |
| 52 | + /// <summary> | |
| 53 | + /// | |
| 54 | + /// </summary> | |
| 55 | + public int? flowUrgent { get; set; } | |
| 56 | + /// <summary> | |
| 57 | + /// | |
| 58 | + /// </summary> | |
| 59 | + public decimal? freightCharges { get; set; } | |
| 60 | + /// <summary> | |
| 61 | + /// | |
| 62 | + /// </summary> | |
| 63 | + public string freightCompany { get; set; } | |
| 64 | + /// <summary> | |
| 65 | + /// | |
| 66 | + /// </summary> | |
| 67 | + public string goodsBelonged { get; set; } | |
| 68 | + /// <summary> | |
| 69 | + /// | |
| 70 | + /// </summary> | |
| 71 | + public DateTime? invoiceDate { get; set; } | |
| 72 | + /// <summary> | |
| 73 | + /// | |
| 74 | + /// </summary> | |
| 75 | + public decimal? invoiceValue { get; set; } | |
| 76 | + /// <summary> | |
| 77 | + /// | |
| 78 | + /// </summary> | |
| 79 | + public string rransportNum { get; set; } | |
| 80 | + /// <summary> | |
| 81 | + /// | |
| 82 | + /// </summary> | |
| 83 | + public List<EntryListItem> entryList { get; set; } = new List<EntryListItem>(); | |
| 84 | + } | |
| 85 | + | |
| 86 | + | |
| 87 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyDeliverGoods/ApplyDeliverGoodsUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyMeeting/ApplyMeetingCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyMeeting | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ApplyMeetingCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string conferenceName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? endDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public DateTime? startDate { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowId { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string administrator { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string applyMaterial { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string applyUser { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string attendees { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string conferenceRoom { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string conferenceTheme { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string conferenceType { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string describe { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string estimatePeople { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public decimal? estimatedAmount { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string fileJson { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public string lookPeople { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string memo { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string otherAttendee { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public string position { get; set; } | |
| 101 | + } | |
| 102 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyMeeting/ApplyMeetingInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ApplyMeeting | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ApplyMeetingInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string administrator { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyMaterial { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string applyUser { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string attendees { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string billNo { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string conferenceName { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string conferenceRoom { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string conferenceTheme { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string conferenceType { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string describe { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public DateTime? endDate { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string estimatePeople { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public decimal? estimatedAmount { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string fileJson { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string flowId { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string flowTitle { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public int? flowUrgent { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string id { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string lookPeople { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public string memo { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string otherAttendee { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string position { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public DateTime? startDate { get; set; } | |
| 101 | + } | |
| 102 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ApplyMeeting/ApplyMeetingUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArchivalBorrow/ArchivalBorrowCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ArchivalBorrow | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ArchivalBorrowCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string archivesName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string archivesId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public DateTime? borrowingDate { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? returnDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string archivalAttributes { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string borrowMode { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowId { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string applyReason { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string applyUser { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string borrowingDepartment { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArchivalBorrow/ArchivalBorrowInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ArchivalBorrow | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ArchivalBorrowInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string applyReason { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyUser { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string archivalAttributes { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string archivesId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string archivesName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string billNo { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string borrowMode { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? borrowingDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string borrowingDepartment { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowTitle { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public int? flowUrgent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string id { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public DateTime? returnDate { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArchivalBorrow/ArchivalBorrowUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArticlesWarehous/ArticlesWarehousCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ArticlesWarehous | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ArticlesWarehousCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? applyDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string applyReasons { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string applyUser { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string articles { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string articlesId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string classification { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string company { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string department { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string estimatePeople { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArticlesWarehous/ArticlesWarehousInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ArticlesWarehous | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ArticlesWarehousInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyReasons { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string applyUser { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string articles { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string articlesId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string billNo { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string classification { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string company { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string department { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string estimatePeople { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowId { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string flowTitle { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public int? flowUrgent { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string id { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ArticlesWarehous/ArticlesWarehousUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchPack/BatchPackCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.BatchPack | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class BatchPackCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public int? status { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public int? flowUrgent { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public DateTime? compactorDate { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowTitle { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string compactor { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string description { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? operationDate { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string packing { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string productName { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string production { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string productionQuty { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string regulations { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string standard { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string warehousNo { get; set; } | |
| 73 | + } | |
| 74 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchPack/BatchPackInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.BatchPack | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class BatchPackInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string compactor { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? compactorDate { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string description { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowTitle { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public int? flowUrgent { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string id { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? operationDate { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string packing { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string productName { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string production { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string productionQuty { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string regulations { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string standard { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string warehousNo { get; set; } | |
| 73 | + } | |
| 74 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchPack/BatchPackUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchTable/BatchTableCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.BatchTable | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class BatchTableCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public decimal? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public DateTime? writingDate { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string description { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string draftedPerson { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string fileJson { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string fileTitle { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string fillNum { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string sendUnit { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string shareNum { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string typing { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchTable/BatchTableInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.BatchTable | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class BatchTableInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string description { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string draftedPerson { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string fileJson { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string fileTitle { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string fillNum { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowTitle { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public int? flowUrgent { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string sendUnit { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string shareNum { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string typing { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public DateTime writingDate { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/BatchTable/BatchTableUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ConBilling/ConBillingCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ConBilling | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ConBillingCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string drawer { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? billDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string amount { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string bank { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public decimal? billAmount { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string companyName { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string conName { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string description { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string fileJson { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string invoAddress { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string invoiceId { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? payAmount { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string taxId { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ConBilling/ConBillingInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ConBilling | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ConBillingInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string amount { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string bank { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public decimal? billAmount { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public DateTime? billDate { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string billNo { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string companyName { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string conName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string description { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string drawer { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string fileJson { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowId { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string flowTitle { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public int? flowUrgent { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string id { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string invoAddress { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string invoiceId { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? payAmount { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string taxId { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ConBilling/ConBillingUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApproval/ContractApprovalCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ContractApproval | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ContractApprovalCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string contractName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string contractId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public DateTime? signingDate { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? startDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? endDate { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string businessPerson { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string contractClass { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string contractType { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string description { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string fileJson { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string firstPartyContact { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string firstPartyPerson { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string firstPartyUnit { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string freeApproverUserId { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public decimal? incomeAmount { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string inputPerson { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string primaryCoverage { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public string secondPartyContact { get; set; } | |
| 101 | + /// <summary> | |
| 102 | + /// | |
| 103 | + /// </summary> | |
| 104 | + public string secondPartyPerson { get; set; } | |
| 105 | + /// <summary> | |
| 106 | + /// | |
| 107 | + /// </summary> | |
| 108 | + public string secondPartyUnit { get; set; } | |
| 109 | + } | |
| 110 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApproval/ContractApprovalInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ContractApproval | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ContractApprovalInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string businessPerson { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string contractClass { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string contractId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string contractName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string contractType { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string description { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? endDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string fileJson { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string firstPartyContact { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string firstPartyPerson { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string firstPartyUnit { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string flowId { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string flowTitle { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public int? flowUrgent { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string id { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? incomeAmount { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string inputPerson { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string primaryCoverage { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public string secondPartyContact { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string secondPartyPerson { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string secondPartyUnit { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public DateTime? signingDate { get; set; } | |
| 101 | + /// <summary> | |
| 102 | + /// | |
| 103 | + /// </summary> | |
| 104 | + public DateTime? startDate { get; set; } | |
| 105 | + } | |
| 106 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApproval/ContractApprovalUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApprovalSheet/ContractApprovalSheetCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ContractApprovalSheet | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ContractApprovalSheetCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public DateTime? endContractDate { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? startContractDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string paymentMethod { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowId { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? applyDate { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string applyUser { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string budgetaryApproval { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string contractContent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string contractId { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string contractName { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string contractNum { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string contractPeriod { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string contractType { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public string fileJson { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string firstParty { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public decimal? incomeAmount { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string leadDepartment { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string personCharge { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public string secondParty { get; set; } | |
| 101 | + /// <summary> | |
| 102 | + /// | |
| 103 | + /// </summary> | |
| 104 | + public string signArea { get; set; } | |
| 105 | + /// <summary> | |
| 106 | + /// | |
| 107 | + /// </summary> | |
| 108 | + public decimal? totalExpenditure { get; set; } | |
| 109 | + } | |
| 110 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApprovalSheet/ContractApprovalSheetInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ContractApprovalSheet | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ContractApprovalSheetInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyUser { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string billNo { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string budgetaryApproval { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string contractContent { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string contractId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string contractName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string contractNum { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string contractPeriod { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string contractType { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public DateTime? endContractDate { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string fileJson { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string firstParty { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string flowId { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string flowTitle { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public int? flowUrgent { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string id { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public decimal? incomeAmount { get; set; } | |
| 81 | + /// <summary> | |
| 82 | + /// | |
| 83 | + /// </summary> | |
| 84 | + public string leadDepartment { get; set; } | |
| 85 | + /// <summary> | |
| 86 | + /// | |
| 87 | + /// </summary> | |
| 88 | + public string paymentMethod { get; set; } | |
| 89 | + /// <summary> | |
| 90 | + /// | |
| 91 | + /// </summary> | |
| 92 | + public string personCharge { get; set; } | |
| 93 | + /// <summary> | |
| 94 | + /// | |
| 95 | + /// </summary> | |
| 96 | + public string secondParty { get; set; } | |
| 97 | + /// <summary> | |
| 98 | + /// | |
| 99 | + /// </summary> | |
| 100 | + public string signArea { get; set; } | |
| 101 | + /// <summary> | |
| 102 | + /// | |
| 103 | + /// </summary> | |
| 104 | + public DateTime? startContractDate { get; set; } | |
| 105 | + /// <summary> | |
| 106 | + /// | |
| 107 | + /// </summary> | |
| 108 | + public decimal? totalExpenditure { get; set; } | |
| 109 | + } | |
| 110 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ContractApprovalSheet/ContractApprovalSheetUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DebitBill/DebitBillCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DebitBill | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DebitBillCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string staffId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string loanMode { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string paymentMethod { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public int? flowUrgent { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowId { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public double? amountDebit { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public DateTime? applyDate { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string departmental { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string reason { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string repaymentBill { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string staffName { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string staffPost { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public DateTime? teachingDate { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string transferAccount { get; set; } | |
| 77 | + } | |
| 78 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DebitBill/DebitBillInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DebitBill | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DebitBillInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public decimal? amountDebit { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public DateTime? applyDate { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string billNo { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string departmental { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowTitle { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public int? flowUrgent { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string id { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string loanMode { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string paymentMethod { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string reason { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string repaymentBill { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string staffId { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string staffName { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string staffPost { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public DateTime? teachingDate { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public string transferAccount { get; set; } | |
| 77 | + } | |
| 78 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DebitBill/DebitBillUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentApproval/DocumentApprovalCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DocumentApproval | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DocumentApprovalCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public DateTime? receiptDate { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public int? flowUrgent { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string draftedPerson { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string fileJson { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string fileName { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string fillNum { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string fillPreparation { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string modifyOpinion { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string serviceUnit { get; set; } | |
| 61 | + } | |
| 62 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentApproval/DocumentApprovalInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DocumentApproval | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DocumentApprovalInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string draftedPerson { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string fileJson { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string fileName { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string fillNum { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string fillPreparation { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowTitle { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public int? flowUrgent { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string modifyOpinion { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public DateTime? receiptDate { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string serviceUnit { get; set; } | |
| 61 | + } | |
| 62 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentApproval/DocumentApprovalUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentSigning/DocumentSigningCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DocumentSigning | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DocumentSigningCrInput | |
| 8 | + { | |
| 9 | + | |
| 10 | + /// <summary> | |
| 11 | + /// | |
| 12 | + /// </summary> | |
| 13 | + public int? status { get; set; } | |
| 14 | + /// <summary> | |
| 15 | + /// | |
| 16 | + /// </summary> | |
| 17 | + public string flowTitle { get; set; } | |
| 18 | + /// <summary> | |
| 19 | + /// | |
| 20 | + /// </summary> | |
| 21 | + public string billNo { get; set; } | |
| 22 | + /// <summary> | |
| 23 | + /// | |
| 24 | + /// </summary> | |
| 25 | + public DateTime? publicationDate { get; set; } | |
| 26 | + /// <summary> | |
| 27 | + /// | |
| 28 | + /// </summary> | |
| 29 | + public DateTime? checkDate { get; set; } | |
| 30 | + /// <summary> | |
| 31 | + /// | |
| 32 | + /// </summary> | |
| 33 | + public string flowId { get; set; } | |
| 34 | + /// <summary> | |
| 35 | + /// | |
| 36 | + /// </summary> | |
| 37 | + public int? flowUrgent { get; set; } | |
| 38 | + /// <summary> | |
| 39 | + /// | |
| 40 | + /// </summary> | |
| 41 | + public decimal? adviceColumn { get; set; } | |
| 42 | + /// <summary> | |
| 43 | + /// | |
| 44 | + /// </summary> | |
| 45 | + public string documentContent { get; set; } | |
| 46 | + /// <summary> | |
| 47 | + /// | |
| 48 | + /// </summary> | |
| 49 | + public string draftedPerson { get; set; } | |
| 50 | + /// <summary> | |
| 51 | + /// | |
| 52 | + /// </summary> | |
| 53 | + public string fileJson { get; set; } | |
| 54 | + /// <summary> | |
| 55 | + /// | |
| 56 | + /// </summary> | |
| 57 | + public string fileName { get; set; } | |
| 58 | + /// <summary> | |
| 59 | + /// | |
| 60 | + /// </summary> | |
| 61 | + public string fillNum { get; set; } | |
| 62 | + /// <summary> | |
| 63 | + /// | |
| 64 | + /// </summary> | |
| 65 | + public string fillPreparation { get; set; } | |
| 66 | + /// <summary> | |
| 67 | + /// | |
| 68 | + /// </summary> | |
| 69 | + public string reader { get; set; } | |
| 70 | + } | |
| 71 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentSigning/DocumentSigningInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.DocumentSigning | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class DocumentSigningInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string adviceColumn { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? checkDate { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string documentContent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string draftedPerson { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string fileJson { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string fileName { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string fillNum { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string fillPreparation { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowTitle { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public int? flowUrgent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string id { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public DateTime? publicationDate { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string reader { get; set; } | |
| 69 | + } | |
| 70 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/DocumentSigning/DocumentSigningUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ExpenseExpenditure/ExpenseExpenditureCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ExpenseExpenditure | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ExpenseExpenditureCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string paymentMethod { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public int? flowUrgent { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string accountOpeningBank { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public decimal? amountPayment { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public DateTime? applyDate { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string applyUser { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string bankAccount { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string contractNum { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string department { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string description { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string nonContract { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string openAccount { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? total { get; set; } | |
| 77 | + } | |
| 78 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ExpenseExpenditure/ExpenseExpenditureInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.ExpenseExpenditure | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class ExpenseExpenditureInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string accountOpeningBank { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public decimal? amountPayment { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public DateTime? applyDate { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string applyUser { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string bankAccount { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string billNo { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string contractNum { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string department { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string description { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowTitle { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public int? flowUrgent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string id { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string nonContract { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string openAccount { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string paymentMethod { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? total { get; set; } | |
| 77 | + } | |
| 78 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/ExpenseExpenditure/ExpenseExpenditureUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/FinishedProduct/FinishedProductCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | +using System.ComponentModel.DataAnnotations; | |
| 6 | + | |
| 7 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.FinishedProduct | |
| 8 | +{ | |
| 9 | + [SuppressSniffer] | |
| 10 | + public class FinishedProductCrInput | |
| 11 | + { | |
| 12 | + /// <summary> | |
| 13 | + /// | |
| 14 | + /// </summary> | |
| 15 | + public string flowId { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// | |
| 18 | + /// </summary> | |
| 19 | + public string flowTitle { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// | |
| 22 | + /// </summary> | |
| 23 | + public int? flowUrgent { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// | |
| 26 | + /// </summary> | |
| 27 | + public int? status { get; set; } | |
| 28 | + /// <summary> | |
| 29 | + /// | |
| 30 | + /// </summary> | |
| 31 | + public DateTime? reservoirDate { get; set; } | |
| 32 | + /// <summary> | |
| 33 | + /// | |
| 34 | + /// </summary> | |
| 35 | + public string billNo { get; set; } | |
| 36 | + /// <summary> | |
| 37 | + /// | |
| 38 | + /// </summary> | |
| 39 | + public string description { get; set; } | |
| 40 | + /// <summary> | |
| 41 | + /// | |
| 42 | + /// </summary> | |
| 43 | + public string warehouse { get; set; } | |
| 44 | + /// <summary> | |
| 45 | + /// | |
| 46 | + /// </summary> | |
| 47 | + public string warehouseName { get; set; } | |
| 48 | + /// <summary> | |
| 49 | + /// | |
| 50 | + /// </summary> | |
| 51 | + [Required(ErrorMessage = "订单基本信息不能为空")] | |
| 52 | + public List<EntryListItem> entryList { get; set; } | |
| 53 | + } | |
| 54 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/FinishedProduct/FinishedProductInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.FinishedProduct | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class FinishedProductInfoOutput | |
| 10 | + { | |
| 11 | + public string id { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// | |
| 14 | + /// </summary> | |
| 15 | + public string billNo { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// | |
| 18 | + /// </summary> | |
| 19 | + public string description { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// | |
| 22 | + /// </summary> | |
| 23 | + public string flowId { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// | |
| 26 | + /// </summary> | |
| 27 | + public string flowTitle { get; set; } | |
| 28 | + /// <summary> | |
| 29 | + /// | |
| 30 | + /// </summary> | |
| 31 | + public int? flowUrgent { get; set; } | |
| 32 | + /// <summary> | |
| 33 | + /// | |
| 34 | + /// </summary> | |
| 35 | + public DateTime? reservoirDate { get; set; } | |
| 36 | + /// <summary> | |
| 37 | + /// | |
| 38 | + /// </summary> | |
| 39 | + public string warehouse { get; set; } | |
| 40 | + /// <summary> | |
| 41 | + /// | |
| 42 | + /// </summary> | |
| 43 | + public string warehouseName { get; set; } | |
| 44 | + /// <summary> | |
| 45 | + /// | |
| 46 | + /// </summary> | |
| 47 | + public List<EntryListItem> entryList { get; set; } = new List<EntryListItem>(); | |
| 48 | + } | |
| 49 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/FinishedProduct/FinishedProductUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/IncomeRecognition/IncomeRecognitionCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.IncomeRecognition | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class IncomeRecognitionCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string settlementMonth { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string contractNum { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string moneyBank { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? paymentDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string contactName { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string contacPhone { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowId { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public decimal? actualAmount { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public decimal? amountPaid { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string contactQQ { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string customerName { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string description { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? totalAmount { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public decimal? unpaidAmount { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/IncomeRecognition/IncomeRecognitionInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.IncomeRecognition | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class IncomeRecognitionInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public decimal? actualAmount { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public decimal? amountPaid { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string billNo { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string contacPhone { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string contactName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string contactQQ { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string contractNum { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string customerName { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string description { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowTitle { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public int? flowUrgent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string id { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string moneyBank { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public DateTime? paymentDate { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string settlementMonth { get; set; } | |
| 73 | + /// <summary> | |
| 74 | + /// | |
| 75 | + /// </summary> | |
| 76 | + public decimal? totalAmount { get; set; } | |
| 77 | + /// <summary> | |
| 78 | + /// | |
| 79 | + /// </summary> | |
| 80 | + public decimal? unpaidAmount { get; set; } | |
| 81 | + } | |
| 82 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/IncomeRecognition/IncomeRecognitionUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LeaveApply/LeaveApplyCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.LeaveApply | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class LeaveApplyCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string leaveType { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string leaveReason { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public DateTime? leaveEndTime { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? leaveStartTime { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string leaveDayCount { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public DateTime? applyDate { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string applyDept { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string applyPost { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string applyUser { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public string fileJson { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string leaveHour { get; set; } | |
| 73 | + } | |
| 74 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LeaveApply/LeaveApplyInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.LeaveApply | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class LeaveApplyInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyDept { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string applyPost { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string applyUser { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string billNo { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string fileJson { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowTitle { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public int? flowUrgent { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string leaveDayCount { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public DateTime? leaveEndTime { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string leaveHour { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string leaveReason { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public DateTime? leaveStartTime { get; set; } | |
| 69 | + /// <summary> | |
| 70 | + /// | |
| 71 | + /// </summary> | |
| 72 | + public string leaveType { get; set; } | |
| 73 | + } | |
| 74 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LeaveApply/LeaveApplyUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LetterService/LetterServiceCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.LetterService | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class LetterServiceCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public DateTime? writingDate { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowId { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string copy { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string fileJson { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string hostUnit { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string issuedNum { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string mainDelivery { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string shareNum { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string title { get; set; } | |
| 61 | + } | |
| 62 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LetterService/LetterServiceInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.LetterService | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class LetterServiceInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string copy { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string fileJson { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string flowId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowTitle { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public int? flowUrgent { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string hostUnit { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string id { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string issuedNum { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string mainDelivery { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string shareNum { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string title { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public DateTime? writingDate { get; set; } | |
| 61 | + } | |
| 62 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/LetterService/LetterServiceUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MaterialRequisition/MaterialRequisitionCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.MaterialRequisition | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class MaterialRequisitionCrInput | |
| 10 | + { | |
| 11 | + /// <summary> | |
| 12 | + /// | |
| 13 | + /// </summary> | |
| 14 | + public string flowId { get; set; } | |
| 15 | + /// <summary> | |
| 16 | + /// | |
| 17 | + /// </summary> | |
| 18 | + public string flowTitle { get; set; } | |
| 19 | + /// <summary> | |
| 20 | + /// | |
| 21 | + /// </summary> | |
| 22 | + public int? flowUrgent { get; set; } | |
| 23 | + /// <summary> | |
| 24 | + /// | |
| 25 | + /// </summary> | |
| 26 | + public string billNo { get; set; } | |
| 27 | + /// <summary> | |
| 28 | + /// | |
| 29 | + /// </summary> | |
| 30 | + public string leadPeople { get; set; } | |
| 31 | + /// <summary> | |
| 32 | + /// | |
| 33 | + /// </summary> | |
| 34 | + public string leadDepartment { get; set; } | |
| 35 | + /// <summary> | |
| 36 | + /// | |
| 37 | + /// </summary> | |
| 38 | + public DateTime? leadDate { get; set; } | |
| 39 | + /// <summary> | |
| 40 | + /// | |
| 41 | + /// </summary> | |
| 42 | + public string description { get; set; } | |
| 43 | + /// <summary> | |
| 44 | + /// | |
| 45 | + /// </summary> | |
| 46 | + public int? status { get; set; } | |
| 47 | + /// <summary> | |
| 48 | + /// | |
| 49 | + /// </summary> | |
| 50 | + public string warehouse { get; set; } | |
| 51 | + /// <summary> | |
| 52 | + /// | |
| 53 | + /// </summary> | |
| 54 | + public List<EntryListItem> entryList { get; set; } | |
| 55 | + } | |
| 56 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MaterialRequisition/MaterialRequisitionInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.MaterialRequisition | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class MaterialRequisitionInfoOutput | |
| 10 | + { | |
| 11 | + public string id { get; set; } | |
| 12 | + /// <summary> | |
| 13 | + /// | |
| 14 | + /// </summary> | |
| 15 | + public string billNo { get; set; } | |
| 16 | + /// <summary> | |
| 17 | + /// | |
| 18 | + /// </summary> | |
| 19 | + public string description { get; set; } | |
| 20 | + /// <summary> | |
| 21 | + /// | |
| 22 | + /// </summary> | |
| 23 | + public string flowId { get; set; } | |
| 24 | + /// <summary> | |
| 25 | + /// | |
| 26 | + /// </summary> | |
| 27 | + public string flowTitle { get; set; } | |
| 28 | + /// <summary> | |
| 29 | + /// | |
| 30 | + /// </summary> | |
| 31 | + public int? flowUrgent { get; set; } | |
| 32 | + /// <summary> | |
| 33 | + /// | |
| 34 | + /// </summary> | |
| 35 | + public DateTime? leadDate { get; set; } | |
| 36 | + /// <summary> | |
| 37 | + /// | |
| 38 | + /// </summary> | |
| 39 | + public string leadDepartment { get; set; } | |
| 40 | + /// <summary> | |
| 41 | + /// | |
| 42 | + /// </summary> | |
| 43 | + public string leadPeople { get; set; } | |
| 44 | + /// <summary> | |
| 45 | + /// | |
| 46 | + /// </summary> | |
| 47 | + public string warehouse { get; set; } | |
| 48 | + /// <summary> | |
| 49 | + /// | |
| 50 | + /// </summary> | |
| 51 | + public List<EntryListItem> entryList { get; set; } = new List<EntryListItem>(); | |
| 52 | + } | |
| 53 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MaterialRequisition/MaterialRequisitionUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MonthlyReport/MonthlyReportCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.MonthlyReport | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class MonthlyReportCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? applyDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string applyDept { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string applyPost { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string applyUser { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string fileJson { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string nfinishMethod { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public DateTime? npfinishTime { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string npworkMatter { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string overalEvaluat { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public DateTime? planEndTime { get; set; } | |
| 69 | + } | |
| 70 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MonthlyReport/MonthlyReportInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.MonthlyReport | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class MonthlyReportInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyDept { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string applyPost { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string applyUser { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string billNo { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string fileJson { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowTitle { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public int? flowUrgent { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string id { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string nfinishMethod { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public DateTime? npfinishTime { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string npworkMatter { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string overalEvaluat { get; set; } | |
| 65 | + /// <summary> | |
| 66 | + /// | |
| 67 | + /// </summary> | |
| 68 | + public DateTime? planEndTime { get; set; } | |
| 69 | + } | |
| 70 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/MonthlyReport/MonthlyReportUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OfficeSupplies/OfficeSuppliesCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OfficeSupplies | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class OfficeSuppliesCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string flowTitle { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string billNo { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string flowId { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? applyDate { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string applyReasons { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string applyUser { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string articlesId { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string articlesName { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string articlesNum { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string classification { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string department { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string useStock { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OfficeSupplies/OfficeSuppliesInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OfficeSupplies | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class OfficeSuppliesInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyReasons { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string applyUser { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string articlesId { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string articlesName { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string articlesNum { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string billNo { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string classification { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string department { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string flowId { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string flowTitle { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public int? flowUrgent { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string id { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string useStock { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OfficeSupplies/OfficeSuppliesUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OutboundOrder/OutboundOrderCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using NCC.WorkFlow.Entitys.Model; | |
| 3 | +using System; | |
| 4 | +using System.Collections.Generic; | |
| 5 | + | |
| 6 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OutboundOrder | |
| 7 | +{ | |
| 8 | + [SuppressSniffer] | |
| 9 | + public class OutboundOrderCrInput | |
| 10 | + { | |
| 11 | + /// <summary> | |
| 12 | + /// | |
| 13 | + /// </summary> | |
| 14 | + public string flowId { get; set; } | |
| 15 | + /// <summary> | |
| 16 | + /// | |
| 17 | + /// </summary> | |
| 18 | + public int? flowUrgent { get; set; } | |
| 19 | + /// <summary> | |
| 20 | + /// | |
| 21 | + /// </summary> | |
| 22 | + public string flowTitle { get; set; } | |
| 23 | + /// <summary> | |
| 24 | + /// | |
| 25 | + /// </summary> | |
| 26 | + public string billNo { get; set; } | |
| 27 | + /// <summary> | |
| 28 | + /// | |
| 29 | + /// </summary> | |
| 30 | + public DateTime? outboundDate { get; set; } | |
| 31 | + /// <summary> | |
| 32 | + /// | |
| 33 | + /// </summary> | |
| 34 | + public string businessPeople { get; set; } | |
| 35 | + /// <summary> | |
| 36 | + /// | |
| 37 | + /// </summary> | |
| 38 | + public string businessType { get; set; } | |
| 39 | + /// <summary> | |
| 40 | + /// | |
| 41 | + /// </summary> | |
| 42 | + public string customerName { get; set; } | |
| 43 | + /// <summary> | |
| 44 | + /// | |
| 45 | + /// </summary> | |
| 46 | + public string description { get; set; } | |
| 47 | + /// <summary> | |
| 48 | + /// | |
| 49 | + /// </summary> | |
| 50 | + public string outStorage { get; set; } | |
| 51 | + /// <summary> | |
| 52 | + /// | |
| 53 | + /// </summary> | |
| 54 | + public int? status { get; set; } | |
| 55 | + /// <summary> | |
| 56 | + /// | |
| 57 | + /// </summary> | |
| 58 | + public string warehouse { get; set; } | |
| 59 | + /// <summary> | |
| 60 | + /// | |
| 61 | + /// </summary> | |
| 62 | + public List<EntryListItem> entryList { get; set; } | |
| 63 | + } | |
| 64 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OutboundOrder/OutboundOrderInfoOutput.cs
0 → 100644
| 1 | +using NCC.WorkFlow.Entitys.Model; | |
| 2 | +using System; | |
| 3 | +using System.Collections.Generic; | |
| 4 | + | |
| 5 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OutboundOrder | |
| 6 | +{ | |
| 7 | + public class OutboundOrderInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public string billNo { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string businessPeople { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string businessType { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string customerName { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string description { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public string flowId { get; set; } | |
| 33 | + public string id { get; set; } | |
| 34 | + /// <summary> | |
| 35 | + /// | |
| 36 | + /// </summary> | |
| 37 | + public string flowTitle { get; set; } | |
| 38 | + /// <summary> | |
| 39 | + /// | |
| 40 | + /// </summary> | |
| 41 | + public int? flowUrgent { get; set; } | |
| 42 | + /// <summary> | |
| 43 | + /// | |
| 44 | + /// </summary> | |
| 45 | + public string outStorage { get; set; } | |
| 46 | + /// <summary> | |
| 47 | + /// | |
| 48 | + /// </summary> | |
| 49 | + public DateTime? outboundDate { get; set; } | |
| 50 | + /// <summary> | |
| 51 | + /// | |
| 52 | + /// </summary> | |
| 53 | + public string warehouse { get; set; } | |
| 54 | + /// <summary> | |
| 55 | + /// | |
| 56 | + /// </summary> | |
| 57 | + public List<EntryListItem> entryList { get; set; } = new List<EntryListItem>(); | |
| 58 | + } | |
| 59 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OutboundOrder/OutboundOrderUpInput.cs
0 → 100644
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OutgoingApply/OutgoingApplyCrInput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OutgoingApply | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class OutgoingApplyCrInput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public int? status { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string billNo { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string flowTitle { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public int? flowUrgent { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public DateTime? startTime { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? endTime { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string flowId { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public DateTime? applyDate { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string applyUser { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public string department { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string destination { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string fileJson { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string outgoingCause { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public string outgoingTotle { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |
netcore/src/Modularity/WorkFlow/NCC.WorkFlow.Entitys/Dto/WorkFlowForm/OutgoingApply/OutgoingApplyInfoOutput.cs
0 → 100644
| 1 | +using NCC.Dependency; | |
| 2 | +using System; | |
| 3 | + | |
| 4 | +namespace NCC.WorkFlow.Entitys.Dto.WorkFlowForm.OutgoingApply | |
| 5 | +{ | |
| 6 | + [SuppressSniffer] | |
| 7 | + public class OutgoingApplyInfoOutput | |
| 8 | + { | |
| 9 | + /// <summary> | |
| 10 | + /// | |
| 11 | + /// </summary> | |
| 12 | + public DateTime? applyDate { get; set; } | |
| 13 | + /// <summary> | |
| 14 | + /// | |
| 15 | + /// </summary> | |
| 16 | + public string applyUser { get; set; } | |
| 17 | + /// <summary> | |
| 18 | + /// | |
| 19 | + /// </summary> | |
| 20 | + public string billNo { get; set; } | |
| 21 | + /// <summary> | |
| 22 | + /// | |
| 23 | + /// </summary> | |
| 24 | + public string department { get; set; } | |
| 25 | + /// <summary> | |
| 26 | + /// | |
| 27 | + /// </summary> | |
| 28 | + public string destination { get; set; } | |
| 29 | + /// <summary> | |
| 30 | + /// | |
| 31 | + /// </summary> | |
| 32 | + public DateTime? endTime { get; set; } | |
| 33 | + /// <summary> | |
| 34 | + /// | |
| 35 | + /// </summary> | |
| 36 | + public string fileJson { get; set; } | |
| 37 | + /// <summary> | |
| 38 | + /// | |
| 39 | + /// </summary> | |
| 40 | + public string flowId { get; set; } | |
| 41 | + /// <summary> | |
| 42 | + /// | |
| 43 | + /// </summary> | |
| 44 | + public string flowTitle { get; set; } | |
| 45 | + /// <summary> | |
| 46 | + /// | |
| 47 | + /// </summary> | |
| 48 | + public int? flowUrgent { get; set; } | |
| 49 | + /// <summary> | |
| 50 | + /// | |
| 51 | + /// </summary> | |
| 52 | + public string id { get; set; } | |
| 53 | + /// <summary> | |
| 54 | + /// | |
| 55 | + /// </summary> | |
| 56 | + public string outgoingCause { get; set; } | |
| 57 | + /// <summary> | |
| 58 | + /// | |
| 59 | + /// </summary> | |
| 60 | + public string outgoingTotle { get; set; } | |
| 61 | + /// <summary> | |
| 62 | + /// | |
| 63 | + /// </summary> | |
| 64 | + public DateTime? startTime { get; set; } | |
| 65 | + } | |
| 66 | +} | ... | ... |