Browse Source

印章管理

yanshi
zhangli 3 years ago
parent
commit
914ce3553f
6 changed files with 191 additions and 89 deletions
  1. +10
    -6
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Form.cshtml
  2. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Form.js
  3. +9
    -3
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Index.cshtml
  4. +98
    -27
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Index.js
  5. +6
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/CustomFunction/OfficialSeal/OfficialSealEntity.cs
  6. +67
    -53
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM

+ 10
- 6
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Form.cshtml View File

@@ -3,19 +3,23 @@
Layout = "~/Views/Shared/_Form.cshtml";
}
<div class="lr-form-wrap" id="form">
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal" >
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal">
<div class="lr-form-item-title">公章名称<font face="宋体">*</font></div>
<input id="Name" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal" >
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal">
<div class="lr-form-item-title">公章类型<font face="宋体">*</font></div>
<div id="Type" isvalid="yes" checkexpession="NotNull" ></div>
<div id="Type" isvalid="yes" checkexpession="NotNull"></div>
</div>
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal" >
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal">
<div class="lr-form-item-title">管理者<font face="宋体">*</font></div>
<div id="ManageUserId" isvalid="yes" checkexpession="NotNull" ></div>
<div id="ManageUserId" isvalid="yes" checkexpession="NotNull"></div>
</div>
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal" >
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal">
<div class="lr-form-item-title">授权者<font face="宋体">*</font></div>
<div id="AuthorizeUserId" isvalid="yes" checkexpession="NotNull"></div>
</div>
<div class="col-xs-12 lr-form-item" data-table="OfficialSeal">
<div class="lr-form-item-title">是否启用<font face="宋体">*</font></div>
<div id="Enable"></div>
</div>


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Form.js View File

@@ -17,6 +17,7 @@ var bootstrap = function ($, learun) {
bind: function () {
$('#Type').lrDataItemSelect({ code: 'SealType' });
$('#ManageUserId').lrDataSourceSelect({ code: 'teacheruserdata',value: 'f_userid',text: 'f_realname' });
$('#AuthorizeUserId').lrDataSourceSelect({ code: 'teacheruserdata',value: 'f_userid',text: 'f_realname' });
$('#Enable').lrRadioCheckbox({
type: 'radio',
code: 'EnableStatus',


+ 9
- 3
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Index.cshtml View File

@@ -27,10 +27,16 @@
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
</div>
<div class=" btn-group btn-group-sm" learun-authorize="yes">
<a id="lr_add" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;新增</a>
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;编辑</a>
<a id="lr_add" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;新增</a>
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;编辑</a>
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i>&nbsp;删除</a>
<a id="lr_print" class="btn btn-default"><i class="fa fa-print"></i>&nbsp;打印</a>
<a id="lr_print" class="btn btn-default"><i class="fa fa-print"></i>&nbsp;打印</a>
</div>
<div class=" btn-group btn-group-sm" learun-authorize="yes">
<a id="lr_enable" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;启用</a>
<a id="lr_disable" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;禁用</a>
<a id="lr_loss" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;挂失</a>
<a id="lr_noloss" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;取消挂失</a>
</div>
</div>
</div>


+ 98
- 27
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/CustomFunction/Views/OfficialSeal/Index.js View File

@@ -56,7 +56,59 @@ var bootstrap = function ($, learun) {
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/DeleteForm', { keyValue: keyValue}, function () {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/DeleteForm', { keyValue: keyValue }, function () {
refreshGirdData();
});
}
});
}
});
// 启用
$('#lr_enable').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认启用该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/IsEnable', { keyValue: keyValue, Enable: 1 }, function () {
refreshGirdData();
});
}
});
}
});
// 禁用
$('#lr_disable').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认禁用该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/IsEnable', { keyValue: keyValue, Enable: 0 }, function () {
refreshGirdData();
});
}
});
}
});
// 挂失
$('#lr_loss').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认挂失该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/UpdateStatus', { keyValue: keyValue, Status: 2 }, function () {
refreshGirdData();
});
}
});
}
});
// 取消挂失
$('#lr_noloss').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认取消挂失该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/CustomFunction/OfficialSeal/UpdateStatus', { keyValue: keyValue, Status: 0 }, function () {
refreshGirdData();
});
}
@@ -73,29 +125,46 @@ var bootstrap = function ($, learun) {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/CustomFunction/OfficialSeal/GetPageList',
headData: [
{ label: "公章名称", name: "Name", width: 100, align: "left"},
{ label: "公章类型", name: "Type", width: 100, align: "left",
formatterAsync: function (callback, value, row, op,$cell) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'SealType',
callback: function (_data) {
callback(_data.text);
}
});
}},
{ label: "管理者", name: "ManageUserId", width: 100, align: "left",
formatterAsync: function (callback, value, row, op,$cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'teacheruserdata',
key: value,
keyId: 'f_userid',
callback: function (_data) {
callback(_data['f_realname']);
}
});
}},
{ label: "是否启用", name: "Enable", width: 100, align: "left",
{ label: "公章名称", name: "Name", width: 100, align: "left" },
{
label: "公章类型", name: "Type", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'SealType',
callback: function (_data) {
callback(_data.text);
}
});
}
},
{
label: "管理者", name: "ManageUserId", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'teacheruserdata',
key: value,
keyId: 'f_userid',
callback: function (_data) {
callback(_data['f_realname']);
}
});
}
}, {
label: "授权者", name: "AuthorizeUserId", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'teacheruserdata',
key: value,
keyId: 'f_userid',
callback: function (_data) {
callback(_data['f_realname']);
}
});
}
},
{
label: "是否启用", name: "Enable", width: 100, align: "left",
formatter: function (cellvalue) {
if (cellvalue == 1) {
return '<span class=\"label label-success\">启用</span>';
@@ -111,20 +180,22 @@ var bootstrap = function ($, learun) {
if (cellvalue == '0') {
return '<span class=\"label label-success\">正常</span>';
} else if (cellvalue == '1') {
return '<span class=\"label label-danger\">借出</span>';
return '<span class=\"label label-warning\">借出</span>';
} else if (cellvalue == '2') {
return '<span class=\"label label-danger\">挂失</span>';
}

}
},
],
mainId:'Id',
mainId: 'Id',
isPage: true
});
page.search();
},
search: function (param) {
param = param || {};
$('#gridtable').jfGridSet('reload',{ queryJson: JSON.stringify(param) });
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
refreshGirdData = function () {


+ 6
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/CustomFunction/OfficialSeal/OfficialSealEntity.cs View File

@@ -44,6 +44,12 @@ namespace Learun.Application.TwoDevelopment.CustomFunction
/// </summary>
[Column("MANAGEUSERID")]
public string ManageUserId { get; set; }
/// <summary>
/// 授权者
/// </summary>
[Column("AUTHORIZEUSERID")]
public string AuthorizeUserId { get; set; }
/// <summary>
/// CreateUserId
/// </summary>


+ 67
- 53
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{88086B01-C9E1-11D4-9552-0090277716A9}" Label="" LastModificationDate="1623221749" Name="Physical Data Model 1" Objects="3366" Symbols="390" Target="Microsoft SQL Server 2008" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
<?PowerDesigner AppLocale="UTF16" ID="{88086B01-C9E1-11D4-9552-0090277716A9}" Label="" LastModificationDate="1623289408" Name="Physical Data Model 1" Objects="3343" Symbols="390" Target="Microsoft SQL Server 2008" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
<!-- do not edit this file -->

<Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@@ -48898,7 +48898,7 @@ B9AF
<a:Code>OfficialSeal</a:Code>
<a:CreationDate>1574145306</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623221194</a:ModificationDate>
<a:ModificationDate>1623289408</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>公章管理</a:Comment>
<a:TotalSavingCurrency/>
@@ -48958,10 +48958,11 @@ B9AF
<a:Code>Enable</a:Code>
<a:CreationDate>1574145418</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623220673</a:ModificationDate>
<a:ModificationDate>1623229959</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>是否启用</a:Comment>
<a:DataType>bit</a:DataType>
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3267">
<a:ObjectID>5B5298AC-E2A2-4577-B045-7A032A31F29E</a:ObjectID>
@@ -48976,6 +48977,18 @@ B9AF
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3268">
<a:ObjectID>93D38526-1203-4E40-94E9-8A5486434856</a:ObjectID>
<a:Name>AuthorizeUserId</a:Name>
<a:Code>AuthorizeUserId</a:Code>
<a:CreationDate>1623220355</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623289408</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>授权者</a:Comment>
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3269">
<a:ObjectID>973AF0F8-2F98-4360-9340-6BA94A746D5E</a:ObjectID>
<a:Name>CreateUserId</a:Name>
<a:Code>CreateUserId</a:Code>
@@ -48986,7 +48999,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3269">
<o:Column Id="o3270">
<a:ObjectID>12CF3C89-40EB-4983-BC0E-6C7D936A2393</a:ObjectID>
<a:Name>CreateUserName</a:Name>
<a:Code>CreateUserName</a:Code>
@@ -48997,7 +49010,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3270">
<o:Column Id="o3271">
<a:ObjectID>87F668B2-8747-4EF7-91C9-6E290CAE4A6B</a:ObjectID>
<a:Name>CreateTime</a:Name>
<a:Code>CreateTime</a:Code>
@@ -49007,7 +49020,7 @@ B9AF
<a:Modifier>edy</a:Modifier>
<a:DataType>datetime</a:DataType>
</o:Column>
<o:Column Id="o3271">
<o:Column Id="o3272">
<a:ObjectID>01B9E710-A116-4DDD-8026-7B4AD4056777</a:ObjectID>
<a:Name>LastModifyUserId</a:Name>
<a:Code>LastModifyUserId</a:Code>
@@ -49018,7 +49031,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3272">
<o:Column Id="o3273">
<a:ObjectID>CFC51C1E-B06F-470F-87FD-B2F77B195A58</a:ObjectID>
<a:Name>LastModifyUserName</a:Name>
<a:Code>LastModifyUserName</a:Code>
@@ -49029,7 +49042,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3273">
<o:Column Id="o3274">
<a:ObjectID>B844AE0D-AADA-4046-94B0-3B5E2387697B</a:ObjectID>
<a:Name>LastModifyTime</a:Name>
<a:Code>LastModifyTime</a:Code>
@@ -49041,7 +49054,7 @@ B9AF
</o:Column>
</c:Columns>
<c:Keys>
<o:Key Id="o3274">
<o:Key Id="o3275">
<a:ObjectID>D957299A-CCED-4CB0-8067-094D3E08B217</a:ObjectID>
<a:Name>Key_1</a:Name>
<a:Code>Key_1</a:Code>
@@ -49055,10 +49068,10 @@ B9AF
</o:Key>
</c:Keys>
<c:PrimaryKey>
<o:Key Ref="o3274"/>
<o:Key Ref="o3275"/>
</c:PrimaryKey>
<c:ClusterObject>
<o:Key Ref="o3274"/>
<o:Key Ref="o3275"/>
</c:ClusterObject>
</o:Table>
<o:Table Id="o642">
@@ -49067,11 +49080,12 @@ B9AF
<a:Code>OfficialSealUse</a:Code>
<a:CreationDate>1574145306</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623221395</a:ModificationDate>
<a:ModificationDate>1623222458</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>公章申请审批</a:Comment>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column Id="o3275">
<o:Column Id="o3276">
<a:ObjectID>F1B2FE48-71FF-494D-95A1-36372B439CED</a:ObjectID>
<a:Name>Id</a:Name>
<a:Code>Id</a:Code>
@@ -49084,7 +49098,7 @@ B9AF
<a:Length>50</a:Length>
<a:Column.Mandatory>1</a:Column.Mandatory>
</o:Column>
<o:Column Id="o3276">
<o:Column Id="o3277">
<a:ObjectID>8A558B1B-B8B8-4FBC-8F27-86A631141CE5</a:ObjectID>
<a:Name>Type</a:Name>
<a:Code>Type</a:Code>
@@ -49096,7 +49110,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3277">
<o:Column Id="o3278">
<a:ObjectID>BFACB616-A0D5-4D57-894D-2547F4F9AAE1</a:ObjectID>
<a:Name>SealId</a:Name>
<a:Code>SealId</a:Code>
@@ -49108,31 +49122,30 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3278">
<o:Column Id="o3279">
<a:ObjectID>38AF693D-3070-4339-858B-83882F93993C</a:ObjectID>
<a:Name>ApplyReason</a:Name>
<a:Code>ApplyReason</a:Code>
<a:CreationDate>1574145418</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623221395</a:ModificationDate>
<a:ModificationDate>1623226902</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>申请理由</a:Comment>
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
<a:DataType>nvarchar(200)</a:DataType>
<a:Length>200</a:Length>
</o:Column>
<o:Column Id="o3279">
<o:Column Id="o3280">
<a:ObjectID>6E14DF3B-BD39-4800-8FB1-035CADD9AB09</a:ObjectID>
<a:Name>Status</a:Name>
<a:Code>Status</a:Code>
<a:CreationDate>1574145418</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623221180</a:ModificationDate>
<a:ModificationDate>1623226902</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>状态</a:Comment>
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
<a:DataType>int</a:DataType>
</o:Column>
<o:Column Id="o3280">
<o:Column Id="o3281">
<a:ObjectID>883B4158-986C-4DC3-A868-8906823CE705</a:ObjectID>
<a:Name>ApplyUserId</a:Name>
<a:Code>ApplyUserId</a:Code>
@@ -49143,7 +49156,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3281">
<o:Column Id="o3282">
<a:ObjectID>F4364B69-4FA4-4FCB-B19E-2E1EB86F6CA9</a:ObjectID>
<a:Name>ApplyUserName</a:Name>
<a:Code>ApplyUserName</a:Code>
@@ -49154,7 +49167,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3282">
<o:Column Id="o3283">
<a:ObjectID>8B6676FF-21BC-4539-9CF9-0DCD4E139E8E</a:ObjectID>
<a:Name>ApplyTime</a:Name>
<a:Code>ApplyTime</a:Code>
@@ -49166,7 +49179,7 @@ B9AF
</o:Column>
</c:Columns>
<c:Keys>
<o:Key Id="o3283">
<o:Key Id="o3284">
<a:ObjectID>2412DACA-8776-4044-BAB2-3683D7578380</a:ObjectID>
<a:Name>Key_1</a:Name>
<a:Code>Key_1</a:Code>
@@ -49175,28 +49188,29 @@ B9AF
<a:ModificationDate>1623221180</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<c:Key.Columns>
<o:Column Ref="o3275"/>
<o:Column Ref="o3276"/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:PrimaryKey>
<o:Key Ref="o3283"/>
<o:Key Ref="o3284"/>
</c:PrimaryKey>
<c:ClusterObject>
<o:Key Ref="o3283"/>
<o:Key Ref="o3284"/>
</c:ClusterObject>
</o:Table>
<o:Table Id="o644">
<a:ObjectID>5F003D1A-69FB-4491-B659-E4180B5FF187</a:ObjectID>
<a:Name>公章使用/归还</a:Name>
<a:Name>公章使用/归还记录</a:Name>
<a:Code>OfficialSealRecord</a:Code>
<a:CreationDate>1574145306</a:CreationDate>
<a:Creator>edy</a:Creator>
<a:ModificationDate>1623221682</a:ModificationDate>
<a:ModificationDate>1623222453</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<a:Comment>公章使用/归还记录</a:Comment>
<a:TotalSavingCurrency/>
<c:Columns>
<o:Column Id="o3284">
<o:Column Id="o3285">
<a:ObjectID>40E15FC5-EF45-4FCE-B546-D268C28E9819</a:ObjectID>
<a:Name>Id</a:Name>
<a:Code>Id</a:Code>
@@ -49209,7 +49223,7 @@ B9AF
<a:Length>50</a:Length>
<a:Column.Mandatory>1</a:Column.Mandatory>
</o:Column>
<o:Column Id="o3285">
<o:Column Id="o3286">
<a:ObjectID>C585DA32-52C9-4F2C-B805-0BCDD3C7ECA8</a:ObjectID>
<a:Name>SealId</a:Name>
<a:Code>SealId</a:Code>
@@ -49221,7 +49235,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3286">
<o:Column Id="o3287">
<a:ObjectID>30C0276C-CD32-48FD-8754-788019DDE10B</a:ObjectID>
<a:Name>Status</a:Name>
<a:Code>Status</a:Code>
@@ -49233,7 +49247,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3287">
<o:Column Id="o3288">
<a:ObjectID>93FF43A6-CBD9-43ED-B7DD-DCE4609E54EB</a:ObjectID>
<a:Name>ApplyUserId</a:Name>
<a:Code>ApplyUserId</a:Code>
@@ -49244,7 +49258,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3288">
<o:Column Id="o3289">
<a:ObjectID>F43C3463-84B9-47BE-9FCC-AD7575F36917</a:ObjectID>
<a:Name>ApplyUserName</a:Name>
<a:Code>ApplyUserName</a:Code>
@@ -49255,7 +49269,7 @@ B9AF
<a:DataType>nvarchar(50)</a:DataType>
<a:Length>50</a:Length>
</o:Column>
<o:Column Id="o3289">
<o:Column Id="o3290">
<a:ObjectID>80237D49-9A65-48C6-A47A-53D3EF21637C</a:ObjectID>
<a:Name>ApplyTime</a:Name>
<a:Code>ApplyTime</a:Code>
@@ -49267,7 +49281,7 @@ B9AF
</o:Column>
</c:Columns>
<c:Keys>
<o:Key Id="o3290">
<o:Key Id="o3291">
<a:ObjectID>9CF8F8CF-6335-4C23-BC6D-5C4125D3EC67</a:ObjectID>
<a:Name>Key_1</a:Name>
<a:Code>Key_1</a:Code>
@@ -49276,15 +49290,15 @@ B9AF
<a:ModificationDate>1623221554</a:ModificationDate>
<a:Modifier>edy</a:Modifier>
<c:Key.Columns>
<o:Column Ref="o3284"/>
<o:Column Ref="o3285"/>
</c:Key.Columns>
</o:Key>
</c:Keys>
<c:PrimaryKey>
<o:Key Ref="o3290"/>
<o:Key Ref="o3291"/>
</c:PrimaryKey>
<c:ClusterObject>
<o:Key Ref="o3290"/>
<o:Key Ref="o3291"/>
</c:ClusterObject>
</o:Table>
</c:Tables>
@@ -49309,7 +49323,7 @@ B9AF
<o:Key Ref="o686"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3291">
<o:ReferenceJoin Id="o3292">
<a:ObjectID>14D78C43-17A2-48F0-83B4-3DF757D5ABE8</a:ObjectID>
<a:CreationDate>1552635393</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49344,7 +49358,7 @@ B9AF
<o:Key Ref="o782"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3292">
<o:ReferenceJoin Id="o3293">
<a:ObjectID>FEAECB7B-8E2A-4492-A530-B0062E1511B8</a:ObjectID>
<a:CreationDate>1552635777</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49379,7 +49393,7 @@ B9AF
<o:Key Ref="o810"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3293">
<o:ReferenceJoin Id="o3294">
<a:ObjectID>81527A47-E565-49C2-AAA7-F0555E81CE72</a:ObjectID>
<a:CreationDate>1553245426</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49414,7 +49428,7 @@ B9AF
<o:Key Ref="o821"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3294">
<o:ReferenceJoin Id="o3295">
<a:ObjectID>A3225D9D-069C-4A67-ABF0-43DC2FA55CF0</a:ObjectID>
<a:CreationDate>1553247802</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49448,7 +49462,7 @@ B9AF
<o:Key Ref="o718"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3295">
<o:ReferenceJoin Id="o3296">
<a:ObjectID>B458081F-CEE1-4251-9E7A-5E9CC93519D5</a:ObjectID>
<a:CreationDate>1553248376</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49483,7 +49497,7 @@ B9AF
<o:Key Ref="o799"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3296">
<o:ReferenceJoin Id="o3297">
<a:ObjectID>8397C4F6-A728-4D3F-B2F8-FAC56886462B</a:ObjectID>
<a:CreationDate>1553248622</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49517,7 +49531,7 @@ B9AF
<o:Key Ref="o859"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3297">
<o:ReferenceJoin Id="o3298">
<a:ObjectID>2F8BC700-F31E-41CC-9DA8-9505EAC5DA85</a:ObjectID>
<a:CreationDate>1553483161</a:CreationDate>
<a:Creator>l</a:Creator>
@@ -49551,7 +49565,7 @@ B9AF
<o:Key Ref="o892"/>
</c:ParentKey>
<c:Joins>
<o:ReferenceJoin Id="o3298">
<o:ReferenceJoin Id="o3299">
<a:ObjectID>0E2D2049-564F-4247-9F5B-B0AA82F9BE96</a:ObjectID>
<a:CreationDate>1555404296</a:CreationDate>
<a:Creator>admin</a:Creator>
@@ -49568,7 +49582,7 @@ B9AF
</o:Reference>
</c:References>
<c:DefaultGroups>
<o:Group Id="o3299">
<o:Group Id="o3300">
<a:ObjectID>46EC3E2A-6CBF-421A-9DA8-6BCCEDEC7DF5</a:ObjectID>
<a:Name>PUBLIC</a:Name>
<a:Code>PUBLIC</a:Code>
@@ -49831,7 +49845,7 @@ B9AF
</o:ExtendedDependency>
</c:ChildTraceabilityLinks>
<c:TargetModels>
<o:TargetModel Id="o3300">
<o:TargetModel Id="o3301">
<a:ObjectID>B1BAD530-6C69-4A9D-BD41-F62F564CA348</a:ObjectID>
<a:Name>Microsoft SQL Server 2008</a:Name>
<a:Code>MSSQLSRV2008</a:Code>


Loading…
Cancel
Save