´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/config/buttons.js
@@ -119,6 +119,15 @@ } }, { name: "ç©æç¶ææ´æ¹", icon: 'el-icon-plus', value: 'Materialstaticupdate', type: 'success', onClick: function () { } }, { name: "人 å·¥ æ å¨ åº åº", icon: 'el-icon-plus', value: 'HandOutboundt', ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/extension/stock/extend/HandMaterials.vue
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,78 @@ <template> <vol-box v-model="show" title="ç©æç¶ææ´æ¹" :width="800" :height="600"> <template #content> <el-form ref="form" :model="form" label-width="90px"> <el-form-item label="åºåç¼å·"> <el-input type="text" v-model="this.form.palletCode" readonly></el-input> </el-form-item> <el-form-item label="ç¶æ" prop="SCNo"> <el-select v-model="form.SCNo" placeholder="è¯·éæ©ç©æç¶æ"> <el-option label="å¾ æ£" value="0" /> <el-option label="åæ ¼" value="1" /> <el-option label="ä¸åæ ¼" value="2" /> <el-option label="空æ" value="3" /> <el-option label="éè´§" value="4" /> <el-option label="è¿å·¥" value="5" /> <el-option label="ç¹é" value="6" /> </el-select> </el-form-item> </el-form> </template> <template #footer> <div> <el-button type="danger" size="small" plain @click="submit"> <i class="el-icon-check">ä¿®æ¹</i> </el-button> <el-button size="small" type="primary" plain @click="() => { this.show = false; } "> <i class="el-icon-close">å ³é</i> </el-button> </div> </template> </vol-box> </template> <script> import VolBox from "@/components/basic/VolBox.vue"; export default { components: { "vol-box": VolBox, }, data() { return { form: { SCNo: "", palletCode: "" }, show: false, }; }, methods: { open(palletCode) { this.show = true; this.form.palletCode = palletCode; }, submit() { this.$emit("parentCall", ($vue) => { var param = { DelKeys: [this.form.palletCode,this.form.SCNo], Extra: true } this.http .post("api/Task/ManualOutbound3", param, "æ°æ®å¤çä¸...") .then((x) => { if (x.status) { this.$Message.success('æå.'); this.$parent.refresh(); } else { return this.$Message.error(x.message); } }); }); }, }, }; </script> ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/extension/stock/extend/HandOutbound.vue
@@ -9,6 +9,8 @@ <el-select v-model="form.SCNo" placeholder="è¯·éæ©ç©æåºå"> <el-option label="é°éåº" value="8" /> <el-option label="ééåº" value="10" /> <el-option label="éè´§1" value="20" /> <el-option label="éè´§2" value="30" /> </el-select> </el-form-item> </el-form> @@ -60,9 +62,9 @@ .then((x) => { if (x.status) { this.$Message.success('æå.'); this.refresh(); this.$parent.refresh(); } else { return this.$error(x.message); return this.$Message.error(x.message); } }); }); ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/extension/stock/stockInfo.js
@@ -1,10 +1,11 @@ //æ¤jsæä»¶æ¯ç¨æ¥èªå®ä¹æ©å±ä¸å¡ä»£ç ï¼å¯ä»¥æ©å±ä¸äºèªå®ä¹é¡µé¢æè éæ°é ç½®çæç代ç import gridBody from "./extend/HandOutbound.vue" import modelBody from "./extend/HandMaterials.vue" let extension = { components: { //æ¥è¯¢ç颿©å±ç»ä»¶ gridHeader: '', gridHeader: modelBody, gridBody: gridBody, gridFooter: '', //æ°å»ºãç¼è¾å¼¹åºæ¡æ©å±ç»ä»¶ @@ -61,6 +62,22 @@ } } var btnMaterialstaticupdate = this.buttons.find(x => x.value == "Materialstaticupdate"); if (btnMaterialstaticupdate != null) { btnMaterialstaticupdate.onClick = () => { let rows = this.$refs.table.getSelected(); if (rows.length == 0) { return this.$error("è¯·éæ©æ°æ®!"); } else { var ids = rows.map(x => { return x.id }) this.$refs.gridHeader.open(ids); this.refresh(); } } } var btnHandOutbound2 = this.buttons.find(x => x.value == "HandOutboundt"); if (btnHandOutbound2 != null) { @@ -89,6 +106,64 @@ } } } this.columns.forEach(x => { if (x.field == "wlstatus") { //æ ¹æ®ä¸åçå¼ï¼å®ä¹ä¸åçæ ·å¼(å¦ï¼æåé¢è²) x.render = (h, { row, column, index }) => { if(row.wlstatus=='1'){ return ( <span style="display:block;background-color:#67c23a;width:65px;text-align:center;color:white;border:1px solid #67c23a;border-radius:5px;"> åæ ¼ </span> ); }else if(row.wlstatus=='0'){ return ( <tr style="display:block;background-color:#f4b400;width:65px;text-align:center;color:white;border:1px solid #f4b400;border-radius:5px;"> å¾ æ£ </tr> ); }else if(row.wlstatus=='2'){ return ( <tr style="display:block;background-color:#f56c6c;width:65px;text-align:center;color:white;border:1px solid #f56c6c;border-radius:5px;"> ä¸åæ ¼ </tr> ); }else if(row.wlstatus=='3'){ return ( <tr style="display:block;background-color:#909399;width:65px;text-align:center;color:white;border:1px solid #909399;border-radius:5px;"> 空æ </tr> ); }else if(row.wlstatus=='4'){ return ( <tr style="display:block;background-color:#f87eb9;width:65px;text-align:center;color:white;border:1px solid #f87eb9;border-radius:5px;"> éè´§ </tr> ); }else if(row.wlstatus=='5'){ return ( <tr style="display:block;background-color:#409eff;width:65px;text-align:center;color:white;border:1px solid #409eff;border-radius:5px;"> è¿å·¥ </tr> ); }else if(row.wlstatus=='6'){ return ( <tr style="display:block;background-color:#9b59b6;width:65px;text-align:center;color:white;border:1px solid #9b59b6;border-radius:5px;"> ç¹é </tr> ); }else{ return ( <span style="display:block;background-color:#909399;width:55px;text-align:center;color:white;border:1px solid #e9e9eb;border-radius:5px;"> æªç¥ </span> ); } } } }); }, onInited() { //æ¡æ¶åå§åé ç½®å ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/extension/taskinfo/task.js
@@ -2,22 +2,22 @@ //æ¤jsæä»¶æ¯ç¨æ¥èªå®ä¹æ©å±ä¸å¡ä»£ç ï¼å¯ä»¥æ©å±ä¸äºèªå®ä¹é¡µé¢æè éæ°é ç½®çæç代ç let extension = { components: { //æ¥è¯¢ç颿©å±ç»ä»¶ gridHeader: '', gridBody: '', gridFooter: '', //æ°å»ºãç¼è¾å¼¹åºæ¡æ©å±ç»ä»¶ modelHeader: '', modelBody: '', modelFooter: '' }, tableAction: '', //æå®æå¼ 表çæé(è¿éå¡«å表å,é»è®¤ä¸ç¨å¡«å) buttons: { view: [], box: [], detail: [] }, //æ©å±çæé® methods: { //ä¸é¢è¿äºæ¹æ³å¯ä»¥ä¿çä¹å¯ä»¥å é¤ onInit() { let TaskHandCancelBtn = this.buttons.find(x => x.value == 'TaskHandCancel'); components: { //æ¥è¯¢ç颿©å±ç»ä»¶ gridHeader: '', gridBody: '', gridFooter: '', //æ°å»ºãç¼è¾å¼¹åºæ¡æ©å±ç»ä»¶ modelHeader: '', modelBody: '', modelFooter: '' }, tableAction: '', //æå®æå¼ 表çæé(è¿éå¡«å表å,é»è®¤ä¸ç¨å¡«å) buttons: { view: [], box: [], detail: [] }, //æ©å±çæé® methods: { //ä¸é¢è¿äºæ¹æ³å¯ä»¥ä¿çä¹å¯ä»¥å é¤ onInit() { let TaskHandCancelBtn = this.buttons.find(x => x.value == 'TaskHandCancel'); if (TaskHandCancelBtn) { TaskHandCancelBtn.onClick = function () { this.$message.success('èªå®ä¹æé®ç¹å»äºä»¶'); @@ -28,17 +28,27 @@ TaskHandCompletedBtn.onClick = function () { let rows = this.$refs.table.getSelected(); if (rows.length == 0) return this.$error("è¯·éæ©æ°æ®!"); var param = rows[0].taskNum; this.http .get("api/Task/TaskCompleted?taskNum="+param, "æ°æ®å¤çä¸...") .then((x) => { if (x.status) { this.$Message.success('任塿å¨å®ææå.'); this.refresh(); } else { return this.$error(x.message); } }); this.$confirm("æ¯å¦ç¡®å®è¦æå¨å®æï¼æå¨å®æå请å é¤WCSç³»ç»ä¸çä»»å¡ï¼", "æç¤º", { // iconClass:"el-icon-success",//el-icon-removeèªå®ä¹å¾æ æ ·å¼ confirmButtonText: "确认",//确认æé®æåæ´æ¢ cancelButtonText: "åæ¶",//åæ¶æé®æåæ´æ¢ // cancelBtn:"åæ¶",//åæ¶æé®æåæ´æ¢ showClose: true,//æ¯å¦æ¾ç¤ºå³ä¸è§å ³éæé® type: "warning",//æç¤ºç±»å success:æå/info:ä¿¡æ¯/warning:è¦å/error:æ¥é }).then(() => { var param = rows[0].taskNum; this.http .get("api/Task/TaskCompleted?taskNum=" + param, "æ°æ®å¤çä¸...") .then((x) => { if (x.status) { this.$Message.success('任塿å¨å®ææå.'); this.refresh(); } else { return this.$error(x.message); } }); }) } } @@ -50,58 +60,68 @@ if (rows.length == 0) { return this.$error("è¯·éæ©æ°æ®!"); } else { var ids = rows.map(x => { return x.taskNum }) this.http .get("api/Task/Cancelinventory?TaskNum="+ids, "æ°æ®å¤çä¸...") .then((x) => { if (x.status) { this.$Message.success('æå.'); this.refresh(); } else { return this.$error(x.message); } }); this.$confirm("æ¯å¦ç¡®å®è¦æå¨å®æï¼æå¨å®æå请å é¤WCSç³»ç»ä¸çä»»å¡ï¼", "æç¤º", { // iconClass:"el-icon-success",//el-icon-removeèªå®ä¹å¾æ æ ·å¼ confirmButtonText: "确认",//确认æé®æåæ´æ¢ cancelButtonText: "åæ¶",//åæ¶æé®æåæ´æ¢ // cancelBtn:"åæ¶",//åæ¶æé®æåæ´æ¢ showClose: true,//æ¯å¦æ¾ç¤ºå³ä¸è§å ³éæé® type: "warning",//æç¤ºç±»å success:æå/info:ä¿¡æ¯/warning:è¦å/error:æ¥é }).then(() => { var ids = rows.map(x => { return x.taskNum }) this.http .get("api/Task/Cancelinventory?TaskNum=" + ids, "æ°æ®å¤çä¸...") .then((x) => { if (x.status) { this.$Message.success('æå.'); this.refresh(); } else { return this.$error(x.message); } }); }) } } } }, onInited() { //æ¡æ¶åå§åé ç½®å //妿è¦é ç½®æç»è¡¨,卿¤æ¹æ³æä½ //this.detailOptions.columns.forEach(column=>{ }); }, searchBefore(param) { //ç颿¥è¯¢å,å¯ä»¥ç»param.wheresæ·»å æ¥è¯¢åæ° //è¿åfalseï¼åä¸ä¼æ§è¡æ¥è¯¢ return true; }, searchAfter(result) { //æ¥è¯¢åï¼resultè¿åçæ¥è¯¢æ°æ®,å¯ä»¥å¨æ¾ç¤ºå°è¡¨æ ¼åå¤çè¡¨æ ¼çå¼ return true; }, addBefore(formData) { //æ°å»ºä¿ååformData为对象ï¼å æ¬æç»è¡¨ï¼å¯ä»¥ç»ç»è¡¨å设置å¼ï¼èªå·±è¾åºçformDataçå¼ return true; }, updateBefore(formData) { //ç¼è¾ä¿ååformData为对象ï¼å æ¬æç»è¡¨ãå é¤è¡çId return true; }, rowClick({ row, column, event }) { //æ¥è¯¢çé¢ç¹å»è¡äºä»¶ this.$refs.table.$refs.table.toggleRowSelection(row); //åå»è¡æ¶éä¸å½åè¡; }, modelOpenAfter(row) { //ç¹å»ç¼è¾ãæ°å»ºæé®å¼¹åºæ¡åï¼å¯ä»¥å¨æ¤å¤åé»è¾ï¼å¦ï¼ä»åå°è·åæ°æ® //(1)夿æ¯ç¼è¾è¿æ¯æ°å»ºæä½ï¼ this.currentAction=='Add'; //(2)ç»å¼¹åºæ¡è®¾ç½®é»è®¤å¼ //(3)this.editFormFields.åæ®µ='xxx'; //妿éè¦ç»ä¸ææ¡è®¾ç½®é»è®¤å¼ï¼è¯·éåthis.editFormOptionsæ¾å°å段é 置对åºdata屿§çkeyå¼ //ç䏿就æè¾åºçï¼console.log(this.editFormOptions) } }, onInited() { //æ¡æ¶åå§åé ç½®å //妿è¦é ç½®æç»è¡¨,卿¤æ¹æ³æä½ //this.detailOptions.columns.forEach(column=>{ }); }, searchBefore(param) { //ç颿¥è¯¢å,å¯ä»¥ç»param.wheresæ·»å æ¥è¯¢åæ° //è¿åfalseï¼åä¸ä¼æ§è¡æ¥è¯¢ return true; }, searchAfter(result) { //æ¥è¯¢åï¼resultè¿åçæ¥è¯¢æ°æ®,å¯ä»¥å¨æ¾ç¤ºå°è¡¨æ ¼åå¤çè¡¨æ ¼çå¼ return true; }, addBefore(formData) { //æ°å»ºä¿ååformData为对象ï¼å æ¬æç»è¡¨ï¼å¯ä»¥ç»ç»è¡¨å设置å¼ï¼èªå·±è¾åºçformDataçå¼ return true; }, updateBefore(formData) { //ç¼è¾ä¿ååformData为对象ï¼å æ¬æç»è¡¨ãå é¤è¡çId return true; }, rowClick({ row, column, event }) { //æ¥è¯¢çé¢ç¹å»è¡äºä»¶ this.$refs.table.$refs.table.toggleRowSelection(row); //åå»è¡æ¶éä¸å½åè¡; }, modelOpenAfter(row) { //ç¹å»ç¼è¾ãæ°å»ºæé®å¼¹åºæ¡åï¼å¯ä»¥å¨æ¤å¤åé»è¾ï¼å¦ï¼ä»åå°è·åæ°æ® //(1)夿æ¯ç¼è¾è¿æ¯æ°å»ºæä½ï¼ this.currentAction=='Add'; //(2)ç»å¼¹åºæ¡è®¾ç½®é»è®¤å¼ //(3)this.editFormFields.åæ®µ='xxx'; //妿éè¦ç»ä¸ææ¡è®¾ç½®é»è®¤å¼ï¼è¯·éåthis.editFormOptionsæ¾å°å段é 置对åºdata屿§çkeyå¼ //ç䏿就æè¾åºçï¼console.log(this.editFormOptions) } }; export default extension; } }; export default extension; ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/views/inbound/inboundOrder.vue
@@ -47,7 +47,7 @@ { title: "ç©æè¯¦æ ", field: "orderNo", type: "string", type: "textarea", }, { title: "ç©æç±»å", ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue
@@ -58,6 +58,9 @@ dataKey: "InventoryMaterialStatus", data: [] }, { title: "夿³¨", field: "Remark" } ], ]); const searchFormFields = ref({ @@ -95,6 +98,10 @@ dataKey: "InventoryMaterialStatus", data: [], }, { title: "åºåç¼å·", field: "id", type: "like", }, ] ]); const columns = ref([ @@ -107,6 +114,14 @@ readonly: true, require: true, align: "left", }, { field: "id", title: "åºåç¼å·", type: "string", width: 90, align: "left", DisplayType:"link" }, { field: "palletCode", @@ -162,6 +177,12 @@ type: "string", width: 150, align: "left", },{ field: "remark", title: "夿³¨", type: "string", width: 100, align: "left", }, { field: "creater", @@ -191,13 +212,7 @@ width: 160, align: "left", }, { field: "remark", title: "夿³¨", type: "string", width: 100, align: "left", }, ]); const detail = ref({ cnName: "#detailCnName", ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue
@@ -78,10 +78,15 @@ { title: "åºåæç»ç¶æ", field: "stockQuantity", type: "select", dataKey: "stockStatusEmun", data: [], type:"like" }, { field: "stockId", title: "åºåä¿¡æ¯ä¸»é®", type: "string", width: 90, align: "left", }, ] ]); const columns = ref([ @@ -127,9 +132,16 @@ field: "batchNo", title: "ç©ææ¹æ¬¡", type: "string", width: 90, width: 120, align: "left", }, { field: "serialNumber", title: "å å·", type: "string", width: 50, align: "left", }, { field: "batchNoName", title: "ç©ææ¹æ¬¡è¯¦æ ", @@ -141,7 +153,7 @@ field: "stockQuantity", title: "éé", type: "string", width: 200, width: 80, align: "left", }, { ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.metadata.v7.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.projects.v7.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/DesignTimeBuild/.dtbcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/1ed26ef5-720b-4c03-b8b1-a1b8773a58fd.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/3bd0d41e-00cd-44b7-9b4b-944c5b73bc23.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/3f2b6c8a-63c3-4e6b-bf03-b2572e1c60a2.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/4443572d-5c26-4f14-a39d-4f1e37230e25.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/59621407-5111-4ab6-b8da-d34d58201d18.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/6e727561-e6f7-4391-82af-e96d3322c124.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/bdc7199d-3f0d-429c-8fec-314232feeaa6.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.futdcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.suoBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/HierarchyCache.v1.txtBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/DB/Models/BaseEntity.cs
@@ -47,7 +47,7 @@ /// å建æ¶é´ /// </summary> [ImporterHeader(Name = "å建æ¶é´")] [ExporterHeader(IsIgnore = true)] [ExporterHeader(DisplayName = "å建æ¶é´")] [SugarColumn(IsNullable = false, IsOnlyIgnoreUpdate = true, ColumnDescription = "å建æ¶é´")] public DateTime CreateDate { get; set; } = DateTime.Now; ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/Enums/StockEnum.cs
@@ -108,6 +108,12 @@ ä¸åæ ¼ = 2, [Description("空æ")] 空æ = 3, [Description("éè´§")] éè´§ = 4, [Description("è¿å·¥")] è¿å·¥ = 5, [Description("ç¹é")] ç¹é = 6, } public enum outMaterialType ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/ref/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/refint/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/ref/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/refint/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs
@@ -56,6 +56,7 @@ WebResponseContent GenerateInventoryInformation(GenerateInv generate); WebResponseContent ManualOutbound(SaveModel saveModel); WebResponseContent ManualOutbound2(SaveModel saveModel); WebResponseContent ManualOutbound3(SaveModel saveModel); WebResponseContent ManualOutboundDeleteinventory(SaveModel saveModel); WebResponseContent Empty_outbound(GenerateInv generate); WebResponseContent Queryinventory(GenerateInv generate); ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/ref/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/refint/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/ref/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/refint/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_StockInfoDetail.cs
@@ -1,4 +1,6 @@ using SqlSugar; using Magicodes.ExporterAndImporter.Core; using Org.BouncyCastle.Crypto; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; @@ -11,42 +13,57 @@ [SugarTable(nameof(Dt_StockInfoDetail), "åºåä¿¡æ¯æç»")] public class Dt_StockInfoDetail : BaseEntity { [ExporterHeader(DisplayName = "主é®", IsIgnore = true)] [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] public int Id { get; set; } [ExporterHeader(DisplayName = "åºåä¿¡æ¯ä¸»é®", IsIgnore = true)] [SugarColumn(IsNullable = false, ColumnDescription = "åºåä¿¡æ¯ä¸»é®")] public int StockId { get; set; } [ExporterHeader(DisplayName = "ç©æç¼å·")] [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "ç©æç¼å·")] public string MaterielCode { get; set; } [ExporterHeader(DisplayName = "ç©æåç§°")] [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "ç©æåç§°")] public string MaterielName { get; set; } [ExporterHeader(DisplayName = "åæ®ç¼å·")] [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "åæ®ç¼å·")] public string OrderNo { get; set; } [ExporterHeader(DisplayName = "æ¹æ¬¡å·")] [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "æ¹æ¬¡å·")] public string BatchNo { get; set; } [ExporterHeader(DisplayName = "åºåå·")] [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "åºåå·")] public string SerialNumber { get; set; } [ExporterHeader(DisplayName = "ç©ææ¹æ¬¡è¯¦æ ")] [SugarColumn(IsNullable = true, ColumnDescription = "ç©ææ¹æ¬¡è¯¦æ ")] public string BatchNoName { get; set; } [ExporterHeader(DisplayName = "åºåæ°é")] [SugarColumn(IsNullable = false, DecimalDigits = 2, ColumnDescription = "åºåæ°é")] public decimal StockQuantity { get; set; } [ExporterHeader(DisplayName = "åºåºæ°é", IsIgnore = true)] [SugarColumn(IsNullable = false, DecimalDigits = 2, ColumnDescription = "åºåºæ°é", DefaultValue = "0")] public decimal OutboundQuantity { get; set; } [ExporterHeader(DisplayName = "åºåæç»ç¶æ", IsIgnore = true)] [SugarColumn(IsNullable = false, ColumnDescription = "åºåæç»ç¶æ")] public int Status { get; set; } [ExporterHeader(DisplayName = "夿³¨")] [SugarColumn(IsNullable = true, ColumnDescription = "夿³¨")] public string Remark { get; set; } [SugarColumn(IsNullable = true, ColumnDescription = "ç©ææ¹æ¬¡è¯¦æ ")] public string BatchNoName { get; set; } [ExporterHeader(IsIgnore =true)] [Navigate(NavigateType.OneToOne, nameof(Dt_StockQuantityChangeRecord.StockDetailId), nameof(Id))] public Dt_StockQuantityChangeRecord StockQuantityChangeRecord { get; set; } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/ref/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/refint/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/Base/StockInfoService.cs
@@ -27,15 +27,18 @@ private readonly IBasicRepository _basicRepository; private readonly IStockRepository _stockRepository; private readonly IRecordService _recordService; private readonly IStockInfoDetailRepository _stockInfoDetail; public IStockInfoRepository Repository => BaseDal; public StockInfoService(IStockInfoRepository BaseDal, IMapper mapper, IBasicRepository basicRepository, IStockRepository stockRepository,IRecordService recordService) : base(BaseDal) public StockInfoService(IStockInfoRepository BaseDal, IMapper mapper, IBasicRepository basicRepository, IStockRepository stockRepository,IRecordService recordService, IStockInfoDetailRepository stockInfoDetail) : base(BaseDal) { _mapper = mapper; _basicRepository = basicRepository; _stockRepository = stockRepository; _recordService = recordService; _stockInfoDetail = stockInfoDetail; } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/Service/StockInfoDetailService.cs
@@ -1,4 +1,5 @@ using Magicodes.ExporterAndImporter.Core; using AutoMapper; using Magicodes.ExporterAndImporter.Core; using Magicodes.ExporterAndImporter.Excel; using SqlSugar; using System; @@ -7,16 +8,21 @@ using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_Core.Helper; using WIDESEA_IRecordService; using WIDESEA_IStockRepository; using WIDESEA_IStockService; using WIDESEA_ITaskInfoRepository; using WIDESEA_Model.Models; namespace WIDESEA_StockService { public partial class StockInfoDetailService : ServiceBase<Dt_StockInfoDetail, IStockInfoDetailRepository>, IStockInfoDetailService { public bool ExistSerialNumber(string SerialNumber) { return BaseDal.QueryFirst(x => x.SerialNumber == SerialNumber) != null; @@ -27,33 +33,6 @@ return BaseDal.QueryFirst(x => SerialNumbers.Contains(x.SerialNumber)) != null; } //å¯¼åº public override WebResponseContent Export(PageDataOptions options) { WebResponseContent content = new WebResponseContent(); try { string savePath = AppDomain.CurrentDomain.BaseDirectory + $"ExcelExport"; IExporter exporter = new ExcelExporter(); //æ·»å æ¡ä»¶ string wheres = options.ValidatePageOptions(TProperties); //è·åæåºå段 Dictionary<string, OrderByType> orderbyDic = options.GetPageDataSort(TProperties); List<Dt_StockInfoDetail> entities = BaseDal.QueryData(wheres, orderbyDic); byte[] data = exporter.ExportAsByteArray(entities).Result; string fileName = "1.xlsx"; FileHelper.WriteFile(savePath, fileName, data); content = WebResponseContent.Instance.OK(data: savePath + "\\" + fileName); } catch (Exception ex) { content = WebResponseContent.Instance.Error(ex.Message); } return content; } } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/Service/StockInfoService.cs
@@ -185,6 +185,109 @@ return outStocks; } //å¯¼åº public override WebResponseContent Export(PageDataOptions options) { WebResponseContent content = new WebResponseContent(); try { string savePath = AppDomain.CurrentDomain.BaseDirectory + $"ExcelExport"; IExporter exporter = new ExcelExporter(); //æ·»å æ¡ä»¶ string wheres = options.ValidatePageOptions(TProperties); //è·åæåºå段 Dictionary<string, OrderByType> orderbyDic = options.GetPageDataSort(TProperties); List<Dt_StockInfo> entities = BaseDal.QueryData(wheres, orderbyDic); List<Dt_StockInfoDetail> detdata = _stockInfoDetail.QueryData(); List<Dt_StockInfodt> stolist= new List<Dt_StockInfodt>(); for (int i = 0; i < entities.Count; i++) { Dt_StockInfoDetail dt_StockIndet = detdata.Where(x => x.StockId == entities[i].Id).FirstOrDefault(); string MaterialTypet = "åææ"; if (entities[i].MaterialType == (int)InventoryMaterialType.æå) { MaterialTypet = "æå"; } else if(entities[i].MaterialType == (int)InventoryMaterialType.空æ) { MaterialTypet = "空æ"; } string Wlstatust = "å¾ æ£"; if (entities[i].Wlstatus== (int)InventoryMaterialStatus.åæ ¼) { Wlstatust = "åæ ¼"; } else if (entities[i].Wlstatus == (int)InventoryMaterialStatus.ä¸åæ ¼) { Wlstatust = "ä¸åæ ¼"; } else if (entities[i].Wlstatus == (int)InventoryMaterialStatus.空æ) { Wlstatust = "空æ"; } else if (entities[i].Wlstatus == (int)InventoryMaterialStatus.éè´§) { Wlstatust = "éè´§"; } else if (entities[i].Wlstatus == (int)InventoryMaterialStatus.è¿å·¥) { Wlstatust = "è¿å·¥"; } else if (entities[i].Wlstatus == (int)InventoryMaterialStatus.ç¹é) { Wlstatust = "ç¹é"; } Dt_StockInfodt dt_ = new Dt_StockInfodt() { PalletCode= entities[i].PalletCode, MaterialType = MaterialTypet, LocationCode = entities[i].LocationCode, Wlstatus = Wlstatust, MaterielCode=dt_StockIndet.MaterielCode, MaterielName = dt_StockIndet.MaterielName, OrderNo = dt_StockIndet.OrderNo, BatchNo = dt_StockIndet.BatchNo, SerialNumber = dt_StockIndet.SerialNumber, StockQuantity = dt_StockIndet.StockQuantity, BatchNoName = dt_StockIndet.BatchNoName, CreateDate = dt_StockIndet.CreateDate, Remark = entities[i].Remark, }; stolist.Add(dt_); } byte[] data = exporter.ExportAsByteArray(stolist).Result; string fileName = "1.xlsx"; FileHelper.WriteFile(savePath, fileName, data); content = WebResponseContent.Instance.OK(data: savePath + "\\" + fileName); } catch (Exception ex) { content = WebResponseContent.Instance.Error(ex.Message); } return content; } public class Dt_StockInfodt: Dt_StockInfoDetail { [ExporterHeader(DisplayName = "æçç¼å·")] public string PalletCode { get; set; } [ExporterHeader(DisplayName = "ç±»å")] public string MaterialType { get; set; } [ExporterHeader(DisplayName = "è´§ä½ç¼å·")] public string LocationCode { get; set; } [ExporterHeader(DisplayName = "ç©æç¶æ")] public string Wlstatus { get; set; } } } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/WIDESEA_StockService.csproj
@@ -11,6 +11,7 @@ <ProjectReference Include="..\WIDESEA_IRecordRepository\WIDESEA_IRecordRepository.csproj" /> <ProjectReference Include="..\WIDESEA_IRecordService\WIDESEA_IRecordService.csproj" /> <ProjectReference Include="..\WIDESEA_IStockService\WIDESEA_IStockService.csproj" /> <ProjectReference Include="..\WIDESEA_ITaskInfoRepository\WIDESEA_ITaskInfoRepository.csproj" /> </ItemGroup> </Project> ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockService.deps.json
@@ -11,7 +11,8 @@ "WIDESEA_IBasicRepository": "1.0.0", "WIDESEA_IRecordRepository": "1.0.0", "WIDESEA_IRecordService": "1.0.0", "WIDESEA_IStockService": "1.0.0" "WIDESEA_IStockService": "1.0.0", "WIDESEA_ITaskInfoRepository": "1.0.0" }, "runtime": { "WIDESEA_StockService.dll": {} @@ -1981,6 +1982,14 @@ "WIDESEA_IStockService.dll": {} } }, "WIDESEA_ITaskInfoRepository/1.0.0": { "dependencies": { "WIDESEA_DTO": "1.0.0" }, "runtime": { "WIDESEA_ITaskInfoRepository.dll": {} } }, "WIDESEA_Model/1.0.0": { "dependencies": { "System.Text.RegularExpressions": "4.3.1", @@ -3190,6 +3199,11 @@ "serviceable": false, "sha512": "" }, "WIDESEA_ITaskInfoRepository/1.0.0": { "type": "project", "serviceable": false, "sha512": "" }, "WIDESEA_Model/1.0.0": { "type": "project", "serviceable": false, ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ 98ec668efac42ff2b90bfaf3a889d6ec40ad1462 2abbd6bd6867a1d5ecb32b44b31b236765d51b1f ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.csproj.FileListAbsolute.txt
@@ -68,3 +68,5 @@ F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_StockService\obj\Debug\net6.0\refint\WIDESEA_StockService.dll F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_StockService\obj\Debug\net6.0\WIDESEA_StockService.pdb F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_StockService\obj\Debug\net6.0\ref\WIDESEA_StockService.dll F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_StockService\bin\Debug\net6.0\WIDESEA_ITaskInfoRepository.dll F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_StockService\bin\Debug\net6.0\WIDESEA_ITaskInfoRepository.pdb ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/ref/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/refint/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/WIDESEA_StockService.csproj.nuget.dgspec.json
@@ -578,6 +578,69 @@ } } }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj": { "version": "1.0.0", "restore": { "projectUniqueName": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj", "projectName": "WIDESEA_ITaskInfoRepository", "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj", "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", "outputPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" ], "configFilePaths": [ "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "http://115.159.85.185:8070/v3/index.json": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_DTO\\WIDESEA_DTO.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_DTO\\WIDESEA_DTO.csproj" } } } }, "warningProperties": { "warnAsError": [ "NU1605" ] } }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "imports": [ "net461", "net462", "net47", "net471", "net472", "net48", "net481" ], "assetTargetFallback": true, "warn": true, "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.307\\RuntimeIdentifierGraph.json" } } }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_Model\\WIDESEA_Model.csproj": { "version": "1.0.0", "restore": { @@ -818,6 +881,9 @@ }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj" }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj" } } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/project.assets.json
@@ -3181,6 +3181,19 @@ "bin/placeholder/WIDESEA_IStockService.dll": {} } }, "WIDESEA_ITaskInfoRepository/1.0.0": { "type": "project", "framework": ".NETCoreApp,Version=v6.0", "dependencies": { "WIDESEA_DTO": "1.0.0" }, "compile": { "bin/placeholder/WIDESEA_ITaskInfoRepository.dll": {} }, "runtime": { "bin/placeholder/WIDESEA_ITaskInfoRepository.dll": {} } }, "WIDESEA_Model/1.0.0": { "type": "project", "framework": ".NETCoreApp,Version=v6.0", @@ -9565,6 +9578,11 @@ "path": "../WIDESEA_IStockService/WIDESEA_IStockService.csproj", "msbuildProject": "../WIDESEA_IStockService/WIDESEA_IStockService.csproj" }, "WIDESEA_ITaskInfoRepository/1.0.0": { "type": "project", "path": "../WIDESEA_ITaskInfoRepository/WIDESEA_ITaskInfoRepository.csproj", "msbuildProject": "../WIDESEA_ITaskInfoRepository/WIDESEA_ITaskInfoRepository.csproj" }, "WIDESEA_Model/1.0.0": { "type": "project", "path": "../WIDESEA_Model/WIDESEA_Model.csproj", @@ -9586,7 +9604,8 @@ "WIDESEA_IBasicRepository >= 1.0.0", "WIDESEA_IRecordRepository >= 1.0.0", "WIDESEA_IRecordService >= 1.0.0", "WIDESEA_IStockService >= 1.0.0" "WIDESEA_IStockService >= 1.0.0", "WIDESEA_ITaskInfoRepository >= 1.0.0" ] }, "packageFolders": { @@ -9632,6 +9651,9 @@ }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj" }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj" } } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/project.nuget.cache
@@ -1,6 +1,6 @@ { "version": 2, "dgSpecHash": "KKdx2LHo80Obfthc70j42lGCzSOBtS6d3VLvOECEj4Ba03qTe4ar/N6g2VT4cPJebzIZyr4wiXMi++cM5Uoopg==", "dgSpecHash": "TuGAsqkHe8g5zRt5+fP2VcHz/48JCUP1Y7SJpzsLzaNmGYxWnoEam+CNgV23J0+Hn5GH22WxqRhnMyK4a/xoHQ==", "success": true, "projectFilePath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_StockService\\WIDESEA_StockService.csproj", "expectedPackageFiles": [ ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_Outbound.cs
@@ -672,7 +672,7 @@ for (int i = 0; i < saveModel.DelKeys.Count; i++) { Dt_StockInfo stockt = _stockService.StockInfoService.Repository.QueryFirst(x => x.PalletCode == saveModel.DelKeys[i].ToString()); if (stockt.StockStatus == (int)StockStatusEmun.å·²å ¥åº) if (stockt.StockStatus == (int)StockStatusEmun.å·²å ¥åº && (stockt.Wlstatus == (int)InventoryMaterialStatus.åæ ¼ || stockt.Wlstatus == (int)InventoryMaterialStatus.è¿å·¥)) { if(stockt.MaterialType != (int)InventoryMaterialType.åææ) { @@ -727,17 +727,17 @@ } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼åªå¯åºåº1å··éçæçåæå"); return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼åªå¯åºåº1å··éçæçåæåï¼åºåºæ¡ç ï¼{saveModel.DelKeys[i].ToString()}"); } } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼è¯·ä¸è¦éæ©åææåºåº"); return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼è¯·ä¸è¦éæ©åææåºåºï¼åºåºæ¡ç ï¼{saveModel.DelKeys[i].ToString()}"); } } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼è¯·éæ©å·²å ¥åºçåºåä¿¡æ¯è¿è¡åºåº"); return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼è¯·éæ©å·²å ¥åºä¸åæ ¼çç©æåºåºï¼ï¼ï¼ï¼åºåºæ¡ç ï¼{saveModel.DelKeys[i].ToString()}"); } } @@ -787,7 +787,7 @@ Dt_StockInfo stockt = stocktData.FirstOrDefault(x => x.PalletCode == palletCode); if (stockt !=null) { if (stockt.StockStatus == (int)StockStatusEmun.å·²å ¥åº) if (stockt.StockStatus == (int)StockStatusEmun.å·²å ¥åº && (stockt.Wlstatus == (int)InventoryMaterialStatus.åæ ¼ || stockt.Wlstatus == (int)InventoryMaterialStatus.éè´§ || stockt.Wlstatus == (int)InventoryMaterialStatus.ç¹é)) { Dt_StockInfoDetail stocktdetail = StockInfoDetailData.FirstOrDefault(x => x.StockId == stockt.Id); if(stocktdetail != null) @@ -800,6 +800,21 @@ { locationinfo.LocationStatus = LocationStatusEnum.Lock.ObjToInt(); } string TargetAdd = ""; if (saveModel.DelKeys[1].ToString()=="20") { TargetAdd = "R02-001-010-001-02"; }else if(saveModel.DelKeys[1].ToString() == "30") { TargetAdd = "R02-001-011-001-02"; } else { TargetAdd = locationinfo.RoadwayNo == "2" ? "R02-002-027-011-01" : "R01-002-041-011-01"; } Dt_Task dt_Task = new() { PalletCode = stockt.PalletCode, @@ -808,9 +823,9 @@ TaskType = TaskTypeEnum.Outbound.ObjToInt(), TaskStatus = InTaskStatusEnum.InNew.ObjToInt(), SourceAddress = locationinfo.LocationCode, TargetAddress = locationinfo.RoadwayNo == "2" ? "R02-002-027-011-01" : "R01-002-041-011-01", TargetAddress = TargetAdd, CurrentAddress = locationinfo.LocationCode, NextAddress = locationinfo.RoadwayNo == "2" ? "R02-002-027-011-01" : "R01-002-041-011-01", NextAddress = TargetAdd, Grade = 1, Creater = "WMS", Depth = locationinfo.Depth, @@ -823,11 +838,28 @@ taskdt.Add(dt_Task); dtstocktdetail.Add(stocktdetail); } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼æªæ¾å°å¯¹åºçåºä½ä¿¡æ¯ï¼è¯·æ ¸å¯¹ï¼ï¼ï¼ï¼åºåºæ¡ç ï¼{palletCode}"); } } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼æªæ¾å°å¯¹åºçåºå详æ ä¿¡æ¯ï¼è¯·æ ¸å¯¹ï¼ï¼ï¼ï¼åºåºæ¡ç ï¼{palletCode}"); } } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼è¯·éæ©å·²å ¥åºä¸ï¼åæ ¼ï¼ç¹éï¼éè´§ï¼çç©æåºåºï¼ï¼ï¼ï¼åºåºæ¡ç ï¼{palletCode}"); } } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼æªæ¾å°å¯¹åºæ¡ç çåºåä¿¡æ¯ï¼åºåºæ¡ç ï¼{palletCode}"); } } var responses = HttpHelper.Post<WebResponseContent>(ReceiveWMSTask, taskdt, "ä¸åä»»å¡å ¥åº"); //var responses = HttpHelper.Post<WebResponseContent>(ReceiveWMSTask, taskdt, "ä¸åä»»å¡å ¥åº"); _unitOfWorkManage.BeginTran(); if(dtstockt.Count > 0) { @@ -848,6 +880,50 @@ } } public WebResponseContent ManualOutbound3(SaveModel saveModel) { WebResponseContent content = new WebResponseContent(); try { List<Dt_StockInfo> dtstockt = new List<Dt_StockInfo>(); List<Dt_StockInfo> stocktData = _stockService.StockInfoService.Repository.QueryData(x => x.StockStatus == (int)StockStatusEmun.å·²å ¥åº); string json = saveModel.DelKeys[0].ToString(); List<int> palletCodes = JsonConvert.DeserializeObject<List<int>>(json); foreach (int pallid in palletCodes) { Dt_StockInfo stockt = stocktData.FirstOrDefault(x => x.Id == pallid); if (stockt != null) { stockt.Wlstatus = int.Parse(saveModel.DelKeys[1].ToString()); dtstockt.Add(stockt); } else { return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼æªæ¾å°å¯¹åºçåºåä¿¡æ¯ï¼åºåç¼å·ï¼{pallid}"); } } _unitOfWorkManage.BeginTran(); if (dtstockt.Count > 0) { _stockService.StockInfoService.Repository.UpdateData(dtstockt); } _unitOfWorkManage.CommitTran(); content = WebResponseContent.Instance.OK($"ä¿®æ¹æå"); return content; } catch (Exception ex) { _unitOfWorkManage.RollbackTran(); return content = WebResponseContent.Instance.Error($"åºåºå¤±è´¥ï¼æ¥éä¿¡æ¯ï¼{ex.Message}"); throw; } } public class PalletCodeList { public string PalletCode { get; set; } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/ref/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/refint/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/ref/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/refint/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -74,6 +74,11 @@ { return Service.ManualOutbound2(saveModel); } [HttpPost, Route("ManualOutbound3"), AllowAnonymous] public WebResponseContent ManualOutbound3([FromBody] SaveModel saveModel) { return Service.ManualOutbound3(saveModel); } [HttpPost, Route("ManualOutboundDeleteinventory"), AllowAnonymous] public WebResponseContent ManualOutboundDeleteinventory([FromBody] SaveModel saveModel) { ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Properties/PublishProfiles/FolderProfile.pubxml.user
@@ -6,7 +6,7 @@ <Project> <PropertyGroup> <_PublishTargetUrl>F:\å¤åºé¡¹ç®\å°å±±\11-1\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_WMSServer\bin\Release\net6.0\publish\</_PublishTargetUrl> <History>True|2024-12-02T07:44:38.0506062Z;True|2024-12-02T15:22:09.3721298+08:00;True|2024-12-02T14:37:05.5318110+08:00;True|2024-12-02T11:40:39.8496952+08:00;True|2024-12-02T09:46:57.6060134+08:00;True|2024-11-30T10:44:16.7087028+08:00;True|2024-11-29T08:55:42.7723759+08:00;True|2024-11-27T15:45:28.2642685+08:00;True|2024-11-27T14:19:17.4496491+08:00;True|2024-11-26T15:11:25.4425171+08:00;True|2024-11-26T15:05:29.5184542+08:00;True|2024-11-26T14:00:09.5747278+08:00;True|2024-11-26T11:32:41.3925108+08:00;True|2024-11-25T11:51:55.7699046+08:00;True|2024-11-25T11:50:58.5567879+08:00;True|2024-11-23T17:57:57.6978230+08:00;True|2024-11-23T17:07:07.2699250+08:00;True|2024-11-23T16:53:48.5117380+08:00;True|2024-11-22T09:37:10.9616679+08:00;True|2024-11-20T17:06:17.7667129+08:00;True|2024-11-20T11:50:16.9071019+08:00;True|2024-11-20T11:49:57.5076449+08:00;True|2024-11-20T10:24:18.0981394+08:00;True|2024-11-19T17:20:03.0647106+08:00;True|2024-11-19T14:44:41.9256919+08:00;True|2024-11-19T12:16:25.9509077+08:00;True|2024-11-18T13:34:44.3658491+08:00;True|2024-11-18T08:50:42.7833216+08:00;True|2024-11-16T12:38:04.0732651+08:00;True|2024-11-16T11:58:35.8938457+08:00;True|2024-11-16T11:43:17.9228655+08:00;True|2024-11-16T11:18:12.6670096+08:00;True|2024-11-14T15:21:16.1012761+08:00;True|2024-11-14T15:08:52.0094800+08:00;True|2024-11-14T14:40:35.7689770+08:00;True|2024-11-14T09:45:39.2550446+08:00;True|2024-11-14T09:41:03.5831327+08:00;True|2024-11-14T09:31:53.0695293+08:00;True|2024-11-14T08:49:37.6482501+08:00;False|2024-11-14T08:49:13.2966884+08:00;True|2024-11-13T17:32:45.4958029+08:00;True|2024-11-13T17:01:46.7546428+08:00;True|2024-11-13T16:55:11.2746935+08:00;True|2024-11-13T16:05:45.6847218+08:00;True|2024-11-13T14:26:49.5321983+08:00;True|2024-11-13T12:21:45.2577000+08:00;True|2024-11-13T11:56:46.9979908+08:00;True|2024-11-13T11:42:35.7543618+08:00;True|2024-11-13T08:52:28.4195238+08:00;True|2024-11-12T14:41:49.5622837+08:00;</History> <History>True|2024-12-03T08:52:41.7445725Z;True|2024-12-02T15:44:38.0506062+08:00;True|2024-12-02T15:22:09.3721298+08:00;True|2024-12-02T14:37:05.5318110+08:00;True|2024-12-02T11:40:39.8496952+08:00;True|2024-12-02T09:46:57.6060134+08:00;True|2024-11-30T10:44:16.7087028+08:00;True|2024-11-29T08:55:42.7723759+08:00;True|2024-11-27T15:45:28.2642685+08:00;True|2024-11-27T14:19:17.4496491+08:00;True|2024-11-26T15:11:25.4425171+08:00;True|2024-11-26T15:05:29.5184542+08:00;True|2024-11-26T14:00:09.5747278+08:00;True|2024-11-26T11:32:41.3925108+08:00;True|2024-11-25T11:51:55.7699046+08:00;True|2024-11-25T11:50:58.5567879+08:00;True|2024-11-23T17:57:57.6978230+08:00;True|2024-11-23T17:07:07.2699250+08:00;True|2024-11-23T16:53:48.5117380+08:00;True|2024-11-22T09:37:10.9616679+08:00;True|2024-11-20T17:06:17.7667129+08:00;True|2024-11-20T11:50:16.9071019+08:00;True|2024-11-20T11:49:57.5076449+08:00;True|2024-11-20T10:24:18.0981394+08:00;True|2024-11-19T17:20:03.0647106+08:00;True|2024-11-19T14:44:41.9256919+08:00;True|2024-11-19T12:16:25.9509077+08:00;True|2024-11-18T13:34:44.3658491+08:00;True|2024-11-18T08:50:42.7833216+08:00;True|2024-11-16T12:38:04.0732651+08:00;True|2024-11-16T11:58:35.8938457+08:00;True|2024-11-16T11:43:17.9228655+08:00;True|2024-11-16T11:18:12.6670096+08:00;True|2024-11-14T15:21:16.1012761+08:00;True|2024-11-14T15:08:52.0094800+08:00;True|2024-11-14T14:40:35.7689770+08:00;True|2024-11-14T09:45:39.2550446+08:00;True|2024-11-14T09:41:03.5831327+08:00;True|2024-11-14T09:31:53.0695293+08:00;True|2024-11-14T08:49:37.6482501+08:00;False|2024-11-14T08:49:13.2966884+08:00;True|2024-11-13T17:32:45.4958029+08:00;True|2024-11-13T17:01:46.7546428+08:00;True|2024-11-13T16:55:11.2746935+08:00;True|2024-11-13T16:05:45.6847218+08:00;True|2024-11-13T14:26:49.5321983+08:00;True|2024-11-13T12:21:45.2577000+08:00;True|2024-11-13T11:56:46.9979908+08:00;True|2024-11-13T11:42:35.7543618+08:00;True|2024-11-13T08:52:28.4195238+08:00;True|2024-11-12T14:41:49.5622837+08:00;</History> <LastFailureDetails /> </PropertyGroup> </Project> ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/appsettings.json
@@ -1,5 +1,5 @@ { //"urls": "http://*:9290", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "urls": "http://*:9290", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "Logging": { "LogLevel": { "Default": "Information", @@ -13,7 +13,7 @@ "MainDB": "DB_WIDESEA", //å½å项ç®ç主åºï¼æå¯¹åºçè¿æ¥å符串çEnabledå¿ é¡»ä¸ºtrue //è¿æ¥å符串 //"ConnectionString": "HTI6FB1H05Krd07mNm9yBCNhofW6edA5zLs9TY~MNthRYW3kn0qKbMIsGp~3yyPDF1YZUCPBQx8U0Jfk4PH~ajNFXVIwlH85M3F~v_qKYQ3CeAz3q1mLVDn8O5uWt1~3Ut2V3KRkEwYHvW2oMDN~QIDXPxDgXN0R2oTIhc9dNu7QNaLEknblqmHhjaNSSpERdDVZIgHnMKejU_SL49tralBkZmDNi0hmkbL~837j1NWe37u9fJKmv91QPb~16JsuI9uu0EvNZ06g6PuZfOSAeFH9GMMIZiketdcJG3tHelo=", "ConnectionString": "Data Source=10.50.11.65;Initial Catalog=WIDESEAWMS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", "ConnectionString": "Data Source=.;Initial Catalog=WIDESEAWMS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", //è·¨å "Cors": { "PolicyName": "CorsIpAccess", //çç¥åç§° ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.deps.json
@@ -2163,7 +2163,8 @@ "WIDESEA_IBasicRepository": "1.0.0", "WIDESEA_IRecordRepository": "1.0.0", "WIDESEA_IRecordService": "1.0.0", "WIDESEA_IStockService": "1.0.0" "WIDESEA_IStockService": "1.0.0", "WIDESEA_ITaskInfoRepository": "1.0.0" }, "runtime": { "WIDESEA_StockService.dll": {} ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/appsettings.json
@@ -1,5 +1,5 @@ { //"urls": "http://*:9290", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "urls": "http://*:9290", //webæå¡ç«¯å£ï¼å¦æç¨IISé¨ç½²ï¼æè¿ä¸ªå»æ "Logging": { "LogLevel": { "Default": "Information", @@ -13,7 +13,7 @@ "MainDB": "DB_WIDESEA", //å½å项ç®ç主åºï¼æå¯¹åºçè¿æ¥å符串çEnabledå¿ é¡»ä¸ºtrue //è¿æ¥å符串 //"ConnectionString": "HTI6FB1H05Krd07mNm9yBCNhofW6edA5zLs9TY~MNthRYW3kn0qKbMIsGp~3yyPDF1YZUCPBQx8U0Jfk4PH~ajNFXVIwlH85M3F~v_qKYQ3CeAz3q1mLVDn8O5uWt1~3Ut2V3KRkEwYHvW2oMDN~QIDXPxDgXN0R2oTIhc9dNu7QNaLEknblqmHhjaNSSpERdDVZIgHnMKejU_SL49tralBkZmDNi0hmkbL~837j1NWe37u9fJKmv91QPb~16JsuI9uu0EvNZ06g6PuZfOSAeFH9GMMIZiketdcJG3tHelo=", "ConnectionString": "Data Source=10.50.11.65;Initial Catalog=WIDESEAWMS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", "ConnectionString": "Data Source=.;Initial Catalog=WIDESEAWMS_JSLK;User ID=sa;Password=123456;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False", //è·¨å "Cors": { "PolicyName": "CorsIpAccess", //çç¥åç§° ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/ref/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/refint/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/ref/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/refint/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/WIDESEA_WMSServer.csproj.nuget.dgspec.json
@@ -1847,6 +1847,9 @@ }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_IStockService\\WIDESEA_IStockService.csproj" }, "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj": { "projectPath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoRepository\\WIDESEA_ITaskInfoRepository.csproj" } } } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/project.assets.json
@@ -3461,7 +3461,8 @@ "WIDESEA_IBasicRepository": "1.0.0", "WIDESEA_IRecordRepository": "1.0.0", "WIDESEA_IRecordService": "1.0.0", "WIDESEA_IStockService": "1.0.0" "WIDESEA_IStockService": "1.0.0", "WIDESEA_ITaskInfoRepository": "1.0.0" }, "compile": { "bin/placeholder/WIDESEA_StockService.dll": {} ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/project.nuget.cache
@@ -1,6 +1,6 @@ { "version": 2, "dgSpecHash": "omVvUaX7GPJX5/HaV3USaxWPg2mX4J5JquQEIi1vbKyM0SmJKHOoBYeo8cgHVVI7a1ZJaew2YJIno8E+1czsZw==", "dgSpecHash": "hNauEiNFb22SROKf+vEAdVxmMIWP7KxVx+n53vxOwa7xejexm0UdyeXIWA/lFGKgKwD9Q4pzikyOu46TCR2AYw==", "success": true, "projectFilePath": "F:\\å¤åºé¡¹ç®\\å°å±±\\11-1\\代ç 管ç\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj", "expectedPackageFiles": [