From f63d8ead25bdb3c32dacca817a059bd30390e9bc Mon Sep 17 00:00:00 2001 From: yzh <snbbt@21cn.com> Date: 星期三, 15 六月 2022 22:20:07 +0800 Subject: [PATCH] 1.系统账户数据库优化: 修改“账户类型”的数据类型为VARCHAR2(1024),多个角色时以半角“,”分隔。 加密盐。 密码加密优化;账户登录优化;角色权限管理(作废用户权限); 2.字典类型管理(定义:用户角色) 3.字典数据管理(初始化用户角色数据) 3.角色权限管理 4.系统账户管理,账户类型对应用户角色(可多选)。 --- web/Model/Model/GwSp.cs | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/web/Model/Model/GwSp.cs b/web/Model/Model/GwSp.cs index 1ffd29a..7866540 100644 --- a/web/Model/Model/GwSp.cs +++ b/web/Model/Model/GwSp.cs @@ -39,6 +39,26 @@ private int _TransferFlag;//鎼哄彿杞綉璁剧疆銆�0鍚敤锛�1鍋滅敤 + public string Company { get; set; } //鍏徃鍚嶇О + public string ProductId { get; set; } //浜у搧ID + public string ProductName { get; set; } //浜у搧鍚嶇О + public int BasicNum { get; set; } //鍩烘湰鏉℃暟 + public int GivingNum { get; set; } //璧犻�佹潯鏁� + public int DelFlag { get; set; } //鍒犻櫎鏍囧織锛�0-姝e父锛�2-閫昏緫鍒犻櫎 + public int IsAutoReturn { get; set; } //鏄惁鑷姩杩旇繕: 0-鍚�; 1-鏄�. + public int SubPackageNum { get; set; } //鍒嗗寘鏉℃暟: 琛ㄧず鍚庡彴鏁版嵁鍒嗗寘鏁伴噺锛屼笉鑳戒负0锛屽惁鍒欐病鍔炴硶鍒嗗寘锛岄粯璁�4000涓彿鐮佷竴涓暟鎹寘,寤鸿鍦�2000鑷�5000 + public int SingleSubmitMinRestrict { get; set; } //鐭俊鍗曟鎻愪氦鏈�灏忛檺鍒�:榛樿0琛ㄧず涓嶉檺鍒讹紝鍚敤闄愬埗鍚庡皬浜庤鎻愪氦鏉℃暟鐨勫皢琚嫆缁濄�� + public int IsDispalyPrice { get; set; } //鏄惁鏄剧ず鍗曚环 + public int DeductionMode { get; set; } //鎵h垂鏂瑰紡 + public int IsSendAudit { get; set; } //鍙戦�佹槸鍚﹀鏍� + public int BelowNumAudit { get; set; } //浣庝簬鏉℃暟瀹℃牳 + public int AboveNumAudit { get; set; } //楂樹簬鏉℃暟瀹℃牳 + public int IsCumulativeAudit { get; set; } //鏄惁绱瀹℃牳 + public int CumulativeAuditNum { get; set; } //绱鏉℃暟瀹℃牳 + public int CumulativeAuditTime { get; set; } //绱鏃堕棿锛堝皬鏃讹級 + public int IsSyncChildSendAudit { get; set; } //鏄惁鍚屾瀛愯处鍙�(鍙戦�佸鏍�) + + public int Id { get { return this._id; } -- Gitblit v1.9.1