From ac37632d4d13832b41d96495d9f586748c5d4277 Mon Sep 17 00:00:00 2001 From: yangle <admin@YINMOU> Date: 星期二, 16 五月 2023 14:25:39 +0800 Subject: [PATCH] 流转卡、生产订单、工序进站单、工序出站单只能自己删除自己的单据。(所有模块,做个系统参数,删除人和制单人必须一致) --- WebAPI/Models/Gy_User.cs | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/WebAPI/Models/Gy_User.cs b/WebAPI/Models/Gy_User.cs index 9b1d83d..ec260cb 100644 --- a/WebAPI/Models/Gy_User.cs +++ b/WebAPI/Models/Gy_User.cs @@ -12,6 +12,24 @@ public string Czmm { get; set; } public string Czyyz { get; set; } public string Explain { get; set; } - public string HEmpID { get; set; } + public int HEmpID { get; set; } + public string HCloudUserName { get; set; } + public string HCloudUserPsd { get; set; } + public int HOrgID; + public int HK3UserID; + public int HKeeperID; + public string HKeeper; + public int HSecManagerID; + public string HSecManager; + public int HSellManID; + public string HSellMan; + public int HDeptID; + public string HDept; + public int HWhID; + public string HWHName; + public int HSCWHID; + public string HSCWHName; + public int HSupID; + public string HSupName; } } \ No newline at end of file -- Gitblit v1.9.1