diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/.suo b/04.系统编码/.vs/BeijingSafeguard/v15/.suo index 6b847b7..bce9250 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/.suo and b/04.系统编码/.vs/BeijingSafeguard/v15/.suo differ diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm index 54d4a00..81f8385 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm and b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm differ diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal index 0883d5f..e0867f3 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal and b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal differ diff --git a/04.系统编码/App/App.csproj b/04.系统编码/App/App.csproj index b75a0f4..c68cf85 100644 --- a/04.系统编码/App/App.csproj +++ b/04.系统编码/App/App.csproj @@ -129,6 +129,7 @@ + @@ -203,9 +204,10 @@ + - + @@ -223,6 +225,7 @@ + @@ -337,9 +340,10 @@ - + + diff --git a/04.系统编码/App/Content/images/locate.png b/04.系统编码/App/Content/images/locate.png new file mode 100644 index 0000000..d26f01b Binary files /dev/null and b/04.系统编码/App/Content/images/locate.png differ diff --git a/04.系统编码/App/Content/images/org.png b/04.系统编码/App/Content/images/org.png new file mode 100644 index 0000000..9c991fb Binary files /dev/null and b/04.系统编码/App/Content/images/org.png differ diff --git a/04.系统编码/App/Content/images/upload.png b/04.系统编码/App/Content/images/upload.png new file mode 100644 index 0000000..d7cbcb1 Binary files /dev/null and b/04.系统编码/App/Content/images/upload.png differ diff --git a/04.系统编码/App/Content/scripts/register/register.js b/04.系统编码/App/Content/scripts/register/register.js new file mode 100644 index 0000000..94fc7fd --- /dev/null +++ b/04.系统编码/App/Content/scripts/register/register.js @@ -0,0 +1,26 @@ +var Register = function () { + this.Startup = function () { + $('#select').on('click', this.OnSelectChange.bind(this)); + }; + + this.OnSelectChange = function () { + var option = $("#select option:selected"); + console.log(option.val()); + if (option.val() !== '请选择') { + $('#select').css({ + color: '#3a3a3a', + fontSize: '16px' + }); + } else { + $('#select').css({ + color: '#868686', + fontSize: '14px' + }); + } + }; +}; + +$(document).ready(function () { + var register = new Register(); + register.Startup(); +}); \ No newline at end of file diff --git a/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-color.js b/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-color.js index 5f28270..1bc027c 100644 --- a/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-color.js +++ b/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-color.js @@ -1 +1,30 @@ - \ No newline at end of file +var EditLineColor = function (parent) { + this.Parent = parent; + this.Dialog = $('#edit-line-color-dialog'); + + this.Setup = function () { + $("#color-picker").on("change", this.ColorChange.bind(this)); + $("#color-sure-btn").on("click", this.OnSureButtonClick.bind(this)); + $("#color-cancel-btn").on("click", this.HideDialog.bind(this)); + $("#color-close").on("click", this.HideDialog.bind(this)); + }; + + this.Show = function (data) { + this.Dialog.show(); + console.log(data); + $("#color").textbox('setValue', data.Value); + $('#color-picker').val('#ff0000'); + }; + + this.ColorChange = function () { + $("#color").textbox('setValue', $('#color-picker').val()); + }; + + this.OnSureButtonClick = function () { + this.Dialog.hide(); + }; + + this.HideDialog = function () { + this.Dialog.hide(); + }; +}; \ No newline at end of file diff --git a/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-width.js b/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-width.js new file mode 100644 index 0000000..a6540b2 --- /dev/null +++ b/04.系统编码/App/Content/scripts/system-management/config-management/edit-line-width.js @@ -0,0 +1,23 @@ +var EditLineWidth = function (parent) { + this.Parent = parent; + this.Dialog = $('#edit-line-width-dialog'); + + this.Setup = function () { + $("#width-sure-btn").on("click", this.OnSureButtonClick.bind(this)); + $("#width-cancel-btn").on("click", this.HideDialog.bind(this)); + $("#width-close").on("click", this.HideDialog.bind(this)); + }; + + this.Show = function (data) { + this.Dialog.show(); + $("#width").textbox('setValue', data.Value); + }; + + this.OnSureButtonClick = function () { + this.Dialog.hide(); + }; + + this.HideDialog = function () { + this.Dialog.hide(); + }; +}; \ No newline at end of file diff --git a/04.系统编码/App/Content/scripts/system-management/config-management/edit-locate-icon.js b/04.系统编码/App/Content/scripts/system-management/config-management/edit-locate-icon.js index 5f28270..08591a0 100644 --- a/04.系统编码/App/Content/scripts/system-management/config-management/edit-locate-icon.js +++ b/04.系统编码/App/Content/scripts/system-management/config-management/edit-locate-icon.js @@ -1 +1,28 @@ - \ No newline at end of file +var EditLocateIcon = function (parent) { + this.Parent = parent; + this.Dialog = $('#edit-locate-icon-dialog'); + + this.Setup = function () { + $('#file').on('change', this.onFileChange.bind(this)) + $("#icon-sure-btn").on("click", this.OnSureButtonClick.bind(this)); + $("#icon-cancel-btn").on("click", this.HideDialog.bind(this)); + $("#icon-close").on("click", this.HideDialog.bind(this)); + }; + + this.Show = function (data) { + this.Dialog.show(); + //$("#path").textbox('setValue', data.Value); + }; + + this.onFileChange = function () { + $("#path").textbox('setValue', $('#file').val()); + }; + + this.OnSureButtonClick = function () { + this.Dialog.hide(); + }; + + this.HideDialog = function () { + this.Dialog.hide(); + }; +}; \ No newline at end of file diff --git a/04.系统编码/App/Content/scripts/system-management/config-management/edit-width.js b/04.系统编码/App/Content/scripts/system-management/config-management/edit-width.js deleted file mode 100644 index 5f28270..0000000 --- a/04.系统编码/App/Content/scripts/system-management/config-management/edit-width.js +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/04.系统编码/App/Content/scripts/system-management/config-management/index.js b/04.系统编码/App/Content/scripts/system-management/config-management/index.js index 335040d..014254d 100644 --- a/04.系统编码/App/Content/scripts/system-management/config-management/index.js +++ b/04.系统编码/App/Content/scripts/system-management/config-management/index.js @@ -2,69 +2,48 @@ this.data = { "total": 20, - "rows": [{ Id: 1, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 2, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 3, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 4, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 5, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 6, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 7, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 8, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 9, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 10, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 11, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 12, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 13, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 14, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 15, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 16, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 17, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 18, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 19, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 20, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 21, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 22, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 23, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 24, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 25, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 26, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 27, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 28, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 29, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 30, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 31, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 32, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 33, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 34, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 0 }, - { Id: 35, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 36, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 37, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 38, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }, - { Id: 39, Name: '张三', OrgName: "机构", CreateTime: '2021/12/15 10:00:00', isEnable: 1 }] + "rows": [{ Id: 1, Name: '线条宽度', Value: "2", Unit: '像素' }, + { Id: 2, Name: '线条颜色', Value: "#ff0000", Unit: '-' }, + { Id: 3, Name: '定位图标', Value: "", Unit: '-' }] }; this.selectedRow = []; - this.EditDialog = new EditDialog(this); + this.EditLineWidth = new EditLineWidth(this); + this.EditLineColor = new EditLineColor(this); + this.EditLocateIcon = new EditLocateIcon(this); this.Startup = function () { + this.ReLayout(); this.InitDataGrid(); - this.EditDialog.Setup(); - + this.EditLineWidth.Setup(); + this.EditLineColor.Setup(); + this.EditLocateIcon.Setup(); + + $('#manage').addClass('active'); $('#edit-btn').on('click', this.onEditButtonClick.bind(this)); + + window.onresize = this.ReLayout.bind(this); + }; + + this.ReLayout = function () { + var width = $(window).width(); + var height = $(window).height(); + + $('.manage-table, .manage-table .datagrid').width(width - 247); + $('.manage-table, .manage-table .datagrid').height(height - 109); }; this.InitDataGrid = function () { $('#task-grid').datagrid({ columns: [[ - { field: 'OrgName', title: '名称', align: 'center', width: 100 }, - { field: 'CreateTime', title: '创建时间', align: 'center', width: 100 }, - { field: 'isEnable', title: '启用', align: 'center', width: 30, formatter: this.formatText.bind(this) } + { field: 'Name', title: '名称', align: 'center', width: 100, formatter: this.formatIcon.bind(this) }, + { field: 'Value', title: '值', align: 'center', width: 100, formatter: this.formatIcon.bind(this) }, + { field: 'Unit', title: '单位', align: 'center', width: 30, formatter: this.formatIcon.bind(this) } ]], striped: true, singleSelect: false, fitColumns: true, fit: true, scrollbarSize: 0, - pagination: true, onSelect: this.OnTaskSelected.bind(this), onUnselect: this.OnTaskUnselected.bind(this) }); @@ -72,8 +51,8 @@ $('#task-grid').datagrid('loadData', this.data); }; - this.formatText = function (value) { - return value === 1 ? '已启用' : '已禁用'; + this.formatIcon = function (value) { + return value === "" ? '' : value; }; this.OnTaskSelected = function (index, row) { @@ -83,20 +62,20 @@ //set buttons disabled state $('#edit-btn').prop('disabled', row === null); - $('#delete-btn').prop('disabled', row === null); - $('#enable-btn').prop('disabled', row.isEnable !== 1 ? null : true); - $('#disable-btn').prop('disabled', row.isEnable === 1 ? null : true); }; this.OnTaskUnselected = function (index, row) { $('#edit-btn').prop('disabled', true); - $('#delete-btn').prop('disabled', true); - $('#enable-btn').prop('disabled', true); - $('#disable-btn').prop('disabled', true); }; this.onEditButtonClick = function () { - this.EditDialog.Show(this.selectedRow); + if (this.selectedRow.Name === '线条宽度') + this.EditLineWidth.Show(this.selectedRow); + else if (this.selectedRow.Name === '线条颜色') + this.EditLineColor.Show(this.selectedRow); + else if (this.selectedRow.Name === '定位图标') + this.EditLocateIcon.Show(this.selectedRow); + }; }; diff --git a/04.系统编码/App/Content/scripts/system-management/org-management/index.js b/04.系统编码/App/Content/scripts/system-management/org-management/index.js index ed3495a..ce53216 100644 --- a/04.系统编码/App/Content/scripts/system-management/org-management/index.js +++ b/04.系统编码/App/Content/scripts/system-management/org-management/index.js @@ -47,13 +47,28 @@ this.EditDialog = new EditDialog(this); this.Startup = function () { + this.ReLayout(); this.InitDataGrid(); this.AddDialog.Setup(); this.EditDialog.Setup(); + $('#manage').addClass('active'); $('#add-btn').on('click', this.OnAddButtonClick.bind(this)); $('#edit-btn').on('click', this.onEditButtonClick.bind(this)); $('#delete-btn').on('click', this.onDeleteButtonClick.bind(this)); + $('#delete-dialog-close').on('click', this.CloseDeleteDialog.bind(this)); + $('#dialog-sure').on('click', this.CloseDeleteDialog.bind(this)); + $('#dialog-cancel').on('click', this.CloseDeleteDialog.bind(this)); + + window.onresize = this.ReLayout.bind(this); + }; + + this.ReLayout = function () { + var width = $(window).width(); + var height = $(window).height(); + + $('.manage-table, .manage-table .datagrid').width(width - 247); + $('.manage-table, .manage-table .datagrid').height(height - 109); }; this.InitDataGrid = function () { @@ -111,6 +126,10 @@ $('.dialog-delete').show(); $('.dialog-clear h2').text('确定删除名为「{0}」的机构吗?'.format(this.selectedRow.OrgName)); }; + + this.CloseDeleteDialog = function () { + $('.dialog-delete').hide(); + }; }; $(document).ready(function () { diff --git a/04.系统编码/App/Content/scripts/system-management/user-management/index.js b/04.系统编码/App/Content/scripts/system-management/user-management/index.js index e4fda6c..4958b19 100644 --- a/04.系统编码/App/Content/scripts/system-management/user-management/index.js +++ b/04.系统编码/App/Content/scripts/system-management/user-management/index.js @@ -47,13 +47,28 @@ this.EditDialog = new EditDialog(this); this.Startup = function () { + this.ReLayout(); this.InitDataGrid(); this.AddDialog.Setup(); this.EditDialog.Setup(); + $('#manage').addClass('active'); $('#add-btn').on('click', this.OnAddButtonClick.bind(this)); $('#edit-btn').on('click', this.onEditButtonClick.bind(this)); $('#delete-btn').on('click', this.onDeleteButtonClick.bind(this)); + $('#delete-dialog-close').on('click', this.CloseDeleteDialog.bind(this)); + $('#dialog-sure').on('click', this.CloseDeleteDialog.bind(this)); + $('#dialog-cancel').on('click', this.CloseDeleteDialog.bind(this)); + + window.onresize = this.ReLayout.bind(this); + }; + + this.ReLayout = function () { + var width = $(window).width(); + var height = $(window).height(); + + $('.manage-table, .manage-table .datagrid').width(width -247); + $('.manage-table, .manage-table .datagrid').height(height - 109); }; this.InitDataGrid = function () { @@ -114,6 +129,10 @@ $('.dialog-delete').show(); $('.dialog-clear h2').text('确定删除名为「{0}」的账户吗?'.format(this.selectedRow.Name)); }; + + this.CloseDeleteDialog = function () { + $('.dialog-delete').hide(); + }; }; $(document).ready(function () { diff --git a/04.系统编码/App/Content/styles/common.css b/04.系统编码/App/Content/styles/common.css index a33b6d2..1176134 100644 --- a/04.系统编码/App/Content/styles/common.css +++ b/04.系统编码/App/Content/styles/common.css @@ -56,7 +56,9 @@ background: url('../images/user-management.png') no-repeat left; } +.admin a.manage.active, .admin a.manage:hover { + color: #faa71b; background: url('../images/user-management-hover.png') no-repeat left; } @@ -417,6 +419,39 @@ padding-left: 14px; } +.delete-user-dialog .dialog-btn { + height: 28px; + padding: 0 16px; + line-height: 28px; + border-radius: 3px; +} + +.delete-user-dialog .dialog-content { + height: 150px !important; + margin-top: -75px !important; +} + +.delete-user-dialog .dialog-btn-group { + width: auto; + margin: 0; + padding: 16px 10px; +} + +.delete-user-dialog .dialog-btn:first-of-type { + margin-right: 8px; + color: #ffffff; + background: linear-gradient(to bottom, #febd52, #faa71c); +} + +.delete-user-dialog .dialog-btn:last-of-type { + border: 1px solid #d2d2d2; + background: linear-gradient(to bottom, #fefefe, #dcdcdc); +} + +.delete-user-dialog .dialog-btn:last-of-type:hover { + color: #3a3a3a; +} + .manage-dialog .modal-dialog { width: 362px; margin-left: -181px; @@ -461,6 +496,7 @@ .manage-dialog .modal-body .row .col { width: calc(50% - 5px); + position: relative; } .manage-dialog .modal-body .row .col label { @@ -525,6 +561,52 @@ color: #3a3a3a; } +.manage-dialog .modal-body .row .col .textbox-readonly .textbox-text { + width: calc(100% - 30px) !important; +} + +.manage-dialog .modal-body .row .col .color-picker { + padding: 0; + height: 30px; + position: absolute; + right: -1px; + top: 29px; + background: transparent; + border: 1px solid #cfcfcf; + border-radius: 0 3px 3px 0; +} + +.manage-dialog .modal-body .row .col .file-upload { + width: 30px; + height: 30px; + text-align: center; + position: absolute; + top: 30px; + right: 1px; + cursor: pointer; + background: url("../images/upload.png") no-repeat center center; +} + +.manage-dialog .modal-body .row .col .file-input { + width: 30px; + height: 30px; + opacity: 0; + position: absolute; + top: 32px; + right: 0; + z-index: 10; + cursor: pointer; + font-size: 0; +} + +::-webkit-color-swatch-wrapper { + background-color: #ffffff; +} + +::-webkit-color-swatch { + position: relative; +} + .manage-dialog .modal-body .row .col .star { color: #f40000 } diff --git a/04.系统编码/App/Content/styles/login.css b/04.系统编码/App/Content/styles/login.css index 8f5e167..b2d07d5 100644 --- a/04.系统编码/App/Content/styles/login.css +++ b/04.系统编码/App/Content/styles/login.css @@ -54,11 +54,26 @@ font-size: 16px; } +.login-tip { + margin-top: 20px; + display: block; + text-align: right; + padding-right: 43px; +} + +.login-tip a { + text-decoration: underline; + display: inline-block; + color: #1e6f95; +} + .login-btn { width: 345px; - margin: 40px 0 0 38px; + margin: 12px 0 0 38px; line-height: 46px; text-align: center; cursor: pointer; + font-size: 16px; + color: #868686; background: url('../images/login-btn.png') no-repeat center/cover; } \ No newline at end of file diff --git a/04.系统编码/App/Content/styles/register.css b/04.系统编码/App/Content/styles/register.css new file mode 100644 index 0000000..6236432 --- /dev/null +++ b/04.系统编码/App/Content/styles/register.css @@ -0,0 +1,78 @@ +.register-bg { + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + z-index: 1005; + background: url('../images/login-bg.png') no-repeat center/cover; +} + +.register { + width: 802px; + height: 464px; + margin: -232px 0 0 -401px; + position: fixed; + top: 50%; + left: 50%; + background: url('../images/login-picture.png') no-repeat center/cover; +} + +.register-content { + width: 425px; + height: 446px; + margin-top: 4px; + background: #ffffff; +} + +.register-logo { + margin: 75px 0 20px 40px; +} + +.register-block { + margin: 10px 0 0 40px; + position: relative; +} + +.register-block select { + width: 341px; + height: 40px; + padding-left: 37px; + line-height: 40px; + border: 1px solid #dddddd; + border-radius: 3px; + background: #ffffff; + color: #868686; + font-size: 14px; +} + +.register-block span.icon { + position: absolute; + top: 12px; + left: 10px; +} + +.register-block input { + width: 341px; + height: 40px; + padding-left: 37px; + display: block; + line-height: 44px; + border: 1px solid #dddddd; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + color: #3a3a3a; + font-size: 16px; +} + +.register-btn { + width: 345px; + margin: 12px 0 0 38px; + line-height: 46px; + text-align: center; + cursor: pointer; + font-size: 16px; + color: #868686; + background: url('../images/login-btn.png') no-repeat center/cover; +} diff --git a/04.系统编码/App/Controllers/RegisterController.cs b/04.系统编码/App/Controllers/RegisterController.cs new file mode 100644 index 0000000..c3fa884 --- /dev/null +++ b/04.系统编码/App/Controllers/RegisterController.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Pingchuan.BeijingSafeguard.App.Controllers +{ + public class RegisterController : Controller + { + // GET: Register + public ActionResult Index() + { + return View(); + } + } +} \ No newline at end of file diff --git a/04.系统编码/App/Views/ConfigManagement/EditLineColor.cshtml b/04.系统编码/App/Views/ConfigManagement/EditLineColor.cshtml index a588ae2..6f6ca4e 100644 --- a/04.系统编码/App/Views/ConfigManagement/EditLineColor.cshtml +++ b/04.系统编码/App/Views/ConfigManagement/EditLineColor.cshtml @@ -1,7 +1,27 @@ - -@{ - ViewBag.Title = "EditLineColor"; -} +
+ +
\ No newline at end of file diff --git a/04.系统编码/App/Views/ConfigManagement/EditLineWidth.cshtml b/04.系统编码/App/Views/ConfigManagement/EditLineWidth.cshtml new file mode 100644 index 0000000..351cc62 --- /dev/null +++ b/04.系统编码/App/Views/ConfigManagement/EditLineWidth.cshtml @@ -0,0 +1,26 @@ +
+ +
\ No newline at end of file diff --git a/04.系统编码/App/Views/ConfigManagement/EditLocateIcon.cshtml b/04.系统编码/App/Views/ConfigManagement/EditLocateIcon.cshtml index 9bf965e..52cf1cf 100644 --- a/04.系统编码/App/Views/ConfigManagement/EditLocateIcon.cshtml +++ b/04.系统编码/App/Views/ConfigManagement/EditLocateIcon.cshtml @@ -1,7 +1,28 @@ - -@{ - ViewBag.Title = "EditLocateIcon"; -} +
+ +
\ No newline at end of file diff --git a/04.系统编码/App/Views/ConfigManagement/EditWidth.cshtml b/04.系统编码/App/Views/ConfigManagement/EditWidth.cshtml deleted file mode 100644 index 0bc6a22..0000000 --- a/04.系统编码/App/Views/ConfigManagement/EditWidth.cshtml +++ /dev/null @@ -1,7 +0,0 @@ - -@{ - ViewBag.Title = "EditLineWidth"; -} - -

EditLineWidth

- diff --git a/04.系统编码/App/Views/ConfigManagement/Index.cshtml b/04.系统编码/App/Views/ConfigManagement/Index.cshtml index 511d7fa..891f573 100644 --- a/04.系统编码/App/Views/ConfigManagement/Index.cshtml +++ b/04.系统编码/App/Views/ConfigManagement/Index.cshtml @@ -29,9 +29,15 @@ +@{ + Html.RenderPartial("/Views/ConfigManagement/EditLineWidth.cshtml"); + Html.RenderPartial("/Views/ConfigManagement/EditLineColor.cshtml"); + Html.RenderPartial("/Views/ConfigManagement/EditLocateIcon.cshtml"); +} + @section scripts { + - } diff --git a/04.系统编码/App/Views/Register/Index.cshtml b/04.系统编码/App/Views/Register/Index.cshtml new file mode 100644 index 0000000..c63d97d --- /dev/null +++ b/04.系统编码/App/Views/Register/Index.cshtml @@ -0,0 +1,38 @@ +@{ + ViewBag.Title = "Index"; +} + +
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+
+
+ + + \ No newline at end of file diff --git a/04.系统编码/App/Views/Shared/_Layout.cshtml b/04.系统编码/App/Views/Shared/_Layout.cshtml index 1e087c8..06b0941 100644 --- a/04.系统编码/App/Views/Shared/_Layout.cshtml +++ b/04.系统编码/App/Views/Shared/_Layout.cshtml @@ -38,7 +38,7 @@
欢迎,@(ViewBag.LoginUser != null ? ViewBag.LoginUser.RealName : "未登录") - 系统管理 + 系统管理 退出
diff --git a/04.系统编码/App/Views/User/Login.cshtml b/04.系统编码/App/Views/User/Login.cshtml index 0782a85..ea6d876 100644 --- a/04.系统编码/App/Views/User/Login.cshtml +++ b/04.系统编码/App/Views/User/Login.cshtml @@ -15,6 +15,7 @@ + diff --git a/04.系统编码/App/Views/UserManagement/Index.cshtml b/04.系统编码/App/Views/UserManagement/Index.cshtml index 145e3ad..4a079f1 100644 --- a/04.系统编码/App/Views/UserManagement/Index.cshtml +++ b/04.系统编码/App/Views/UserManagement/Index.cshtml @@ -13,7 +13,7 @@ 机构管理
  • - 系统设置@((ViewBag.Title))1 + 系统设置
  • diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.dll b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.dll index 2937dab..d729a00 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.dll and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.dll differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.pdb b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.pdb index d8408ab..4ca1521 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.pdb and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.App.pdb differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.dll b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.dll index 83bee7b..76bc2eb 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.dll and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.dll differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.pdb b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.pdb index fa43636..fc0369f 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.pdb and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.BLL.pdb differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.dll b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.dll index 0399ba8..8b62f81 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.dll and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.dll differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.pdb b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.pdb index f7b02bc..1464b72 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.pdb and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.DAL.pdb differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.dll b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.dll index 4b9ebbb..07ecb8e 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.dll and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.dll differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.pdb b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.pdb index 75ff074..ae9f5e0 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.pdb and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Model.pdb differ diff --git a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/App/bin/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/App/obj/Debug/App.csproj.CoreCompileInputs.cache b/04.系统编码/App/obj/Debug/App.csproj.CoreCompileInputs.cache index 81f7599..0726f01 100644 --- a/04.系统编码/App/obj/Debug/App.csproj.CoreCompileInputs.cache +++ b/04.系统编码/App/obj/Debug/App.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -9e5a6d8a5667807925d357541947185e8f5c2cd9 +bdde16ab3ba11b51894227e99d7630dc755cd8b3 diff --git a/04.系统编码/App/obj/Debug/App.csprojAssemblyReference.cache b/04.系统编码/App/obj/Debug/App.csprojAssemblyReference.cache index c6fffd7..7c72723 100644 Binary files a/04.系统编码/App/obj/Debug/App.csprojAssemblyReference.cache and b/04.系统编码/App/obj/Debug/App.csprojAssemblyReference.cache differ diff --git a/04.系统编码/App/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/04.系统编码/App/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e0312fc..78608a3 100644 Binary files a/04.系统编码/App/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/04.系统编码/App/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.dll b/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.dll index 2937dab..d729a00 100644 Binary files a/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.dll and b/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.dll differ diff --git a/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.pdb b/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.pdb index d8408ab..4ca1521 100644 Binary files a/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.pdb and b/04.系统编码/App/obj/Debug/Pingchuan.BeijingSafeguard.App.pdb differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.dll b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.dll index 83bee7b..76bc2eb 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.dll and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.dll differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.pdb b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.pdb index fa43636..fc0369f 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.pdb and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.BLL.pdb differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll index 0399ba8..8b62f81 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb index f7b02bc..1464b72 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll index 4b9ebbb..07ecb8e 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb index 75ff074..ae9f5e0 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb differ diff --git a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/BLL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt b/04.系统编码/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt index 1b9bd80..5a45851 100644 --- a/04.系统编码/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt +++ b/04.系统编码/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt @@ -12,3 +12,17 @@ E:\Work\2019\BeijingSafeguard\04.系统编码\BLL\obj\Debug\BLL.csproj.CoreCompi E:\Work\2019\BeijingSafeguard\04.系统编码\BLL\obj\Debug\BLL.csproj.CopyComplete E:\Work\2019\BeijingSafeguard\04.系统编码\BLL\obj\Debug\Pingchuan.BeijingSafeguard.BLL.dll E:\Work\2019\BeijingSafeguard\04.系统编码\BLL\obj\Debug\Pingchuan.BeijingSafeguard.BLL.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.BLL.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.BLL.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.DAL.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.Model.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.Utility.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\PetaPoco.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.DAL.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.Model.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\bin\Debug\Pingchuan.BeijingSafeguard.Utility.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\obj\Debug\BLL.csprojAssemblyReference.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\obj\Debug\BLL.csproj.CoreCompileInputs.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\obj\Debug\BLL.csproj.CopyComplete +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\obj\Debug\Pingchuan.BeijingSafeguard.BLL.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\BLL\obj\Debug\Pingchuan.BeijingSafeguard.BLL.pdb diff --git a/04.系统编码/BLL/obj/Debug/BLL.csprojAssemblyReference.cache b/04.系统编码/BLL/obj/Debug/BLL.csprojAssemblyReference.cache index c1410d0..42354d0 100644 Binary files a/04.系统编码/BLL/obj/Debug/BLL.csprojAssemblyReference.cache and b/04.系统编码/BLL/obj/Debug/BLL.csprojAssemblyReference.cache differ diff --git a/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.dll b/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.dll index 83bee7b..76bc2eb 100644 Binary files a/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.dll and b/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.dll differ diff --git a/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.pdb b/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.pdb index fa43636..fc0369f 100644 Binary files a/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.pdb and b/04.系统编码/BLL/obj/Debug/Pingchuan.BeijingSafeguard.BLL.pdb differ diff --git a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll index 0399ba8..8b62f81 100644 Binary files a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll and b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.dll differ diff --git a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb index f7b02bc..1464b72 100644 Binary files a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb and b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.DAL.pdb differ diff --git a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll index 4b9ebbb..07ecb8e 100644 Binary files a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll and b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll differ diff --git a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb index 75ff074..ae9f5e0 100644 Binary files a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb and b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb differ diff --git a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/DAL/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt b/04.系统编码/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt index 13e5ec8..7ff496d 100644 --- a/04.系统编码/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt +++ b/04.系统编码/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt @@ -11,3 +11,16 @@ E:\Work\2019\BeijingSafeguard\04.系统编码\DAL\obj\Debug\DAL.csproj.CoreCompi E:\Work\2019\BeijingSafeguard\04.系统编码\DAL\obj\Debug\DAL.csproj.CopyComplete E:\Work\2019\BeijingSafeguard\04.系统编码\DAL\obj\Debug\Pingchuan.BeijingSafeguard.DAL.dll E:\Work\2019\BeijingSafeguard\04.系统编码\DAL\obj\Debug\Pingchuan.BeijingSafeguard.DAL.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.DAL.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.DAL.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\MySql.Data.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\PetaPoco.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.Model.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.Utility.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.Model.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\bin\Debug\Pingchuan.BeijingSafeguard.Utility.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\obj\Debug\DAL.csprojAssemblyReference.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\obj\Debug\DAL.csproj.CoreCompileInputs.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\obj\Debug\DAL.csproj.CopyComplete +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\obj\Debug\Pingchuan.BeijingSafeguard.DAL.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\DAL\obj\Debug\Pingchuan.BeijingSafeguard.DAL.pdb diff --git a/04.系统编码/DAL/obj/Debug/DAL.csprojAssemblyReference.cache b/04.系统编码/DAL/obj/Debug/DAL.csprojAssemblyReference.cache index d8db92a..05d41b8 100644 Binary files a/04.系统编码/DAL/obj/Debug/DAL.csprojAssemblyReference.cache and b/04.系统编码/DAL/obj/Debug/DAL.csprojAssemblyReference.cache differ diff --git a/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.dll b/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.dll index 0399ba8..8b62f81 100644 Binary files a/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.dll and b/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.dll differ diff --git a/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.pdb b/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.pdb index f7b02bc..1464b72 100644 Binary files a/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.pdb and b/04.系统编码/DAL/obj/Debug/Pingchuan.BeijingSafeguard.DAL.pdb differ diff --git a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll index 4b9ebbb..07ecb8e 100644 Binary files a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll and b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.dll differ diff --git a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb index 75ff074..ae9f5e0 100644 Binary files a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb and b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Model.pdb differ diff --git a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/Model/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/Model/obj/Debug/Model.csproj.FileListAbsolute.txt b/04.系统编码/Model/obj/Debug/Model.csproj.FileListAbsolute.txt index 17cd41d..c73ea54 100644 --- a/04.系统编码/Model/obj/Debug/Model.csproj.FileListAbsolute.txt +++ b/04.系统编码/Model/obj/Debug/Model.csproj.FileListAbsolute.txt @@ -8,3 +8,13 @@ E:\Work\2019\BeijingSafeguard\04.系统编码\Model\obj\Debug\Model.csproj.CoreC E:\Work\2019\BeijingSafeguard\04.系统编码\Model\obj\Debug\Model.csproj.CopyComplete E:\Work\2019\BeijingSafeguard\04.系统编码\Model\obj\Debug\Pingchuan.BeijingSafeguard.Model.dll E:\Work\2019\BeijingSafeguard\04.系统编码\Model\obj\Debug\Pingchuan.BeijingSafeguard.Model.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\bin\Debug\Pingchuan.BeijingSafeguard.Model.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\bin\Debug\Pingchuan.BeijingSafeguard.Model.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\bin\Debug\PetaPoco.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\bin\Debug\Pingchuan.BeijingSafeguard.Utility.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\bin\Debug\Pingchuan.BeijingSafeguard.Utility.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\obj\Debug\Model.csprojAssemblyReference.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\obj\Debug\Model.csproj.CoreCompileInputs.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\obj\Debug\Model.csproj.CopyComplete +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\obj\Debug\Pingchuan.BeijingSafeguard.Model.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Model\obj\Debug\Pingchuan.BeijingSafeguard.Model.pdb diff --git a/04.系统编码/Model/obj/Debug/Model.csprojAssemblyReference.cache b/04.系统编码/Model/obj/Debug/Model.csprojAssemblyReference.cache index 92c4d42..36e387a 100644 Binary files a/04.系统编码/Model/obj/Debug/Model.csprojAssemblyReference.cache and b/04.系统编码/Model/obj/Debug/Model.csprojAssemblyReference.cache differ diff --git a/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.dll b/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.dll index 4b9ebbb..07ecb8e 100644 Binary files a/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.dll and b/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.dll differ diff --git a/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.pdb b/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.pdb index 75ff074..ae9f5e0 100644 Binary files a/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.pdb and b/04.系统编码/Model/obj/Debug/Pingchuan.BeijingSafeguard.Model.pdb differ diff --git a/04.系统编码/Utility/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/Utility/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/Utility/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/Utility/bin/Debug/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/Utility/obj/Debug/Pingchuan.BeijingSafeguard.Utility.dll b/04.系统编码/Utility/obj/Debug/Pingchuan.BeijingSafeguard.Utility.dll index 9000733..d777cc2 100644 Binary files a/04.系统编码/Utility/obj/Debug/Pingchuan.BeijingSafeguard.Utility.dll and b/04.系统编码/Utility/obj/Debug/Pingchuan.BeijingSafeguard.Utility.dll differ diff --git a/04.系统编码/Utility/obj/Debug/Utility.csproj.FileListAbsolute.txt b/04.系统编码/Utility/obj/Debug/Utility.csproj.FileListAbsolute.txt index 057a1f1..42f4388 100644 --- a/04.系统编码/Utility/obj/Debug/Utility.csproj.FileListAbsolute.txt +++ b/04.系统编码/Utility/obj/Debug/Utility.csproj.FileListAbsolute.txt @@ -4,3 +4,9 @@ E:\Work\2019\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Utility.csprojAs E:\Work\2019\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Utility.csproj.CoreCompileInputs.cache E:\Work\2019\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Pingchuan.BeijingSafeguard.Utility.dll E:\Work\2019\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Pingchuan.BeijingSafeguard.Utility.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\bin\Debug\Pingchuan.BeijingSafeguard.Utility.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\bin\Debug\Pingchuan.BeijingSafeguard.Utility.pdb +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Utility.csprojAssemblyReference.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Utility.csproj.CoreCompileInputs.cache +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Pingchuan.BeijingSafeguard.Utility.dll +E:\Work\2021\BeijingSafeguard\04.系统编码\Utility\obj\Debug\Pingchuan.BeijingSafeguard.Utility.pdb