From 9b0d356ba4c4a02180ddad85bd38312fc7dc404b Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期二, 29 十月 2024 19:57:42 +0800 Subject: [PATCH] Merge branch 'master' of http://47.115.28.255:8110/r/TigerClouds-Tech/Server/TigerApi6_2024 --- Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs | 84 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 84 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs new file mode 100644 index 0000000..20fecd6 --- /dev/null +++ b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs @@ -0,0 +1,84 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tiger.Model.Entitys.MES.U9C +{ + public class U9CBaseResult + { + public int ResCode { get; set; } + public bool Success { get; set; } + public string ResMsg { get; set; } + } + public class U9CResult : U9CBaseResult + { + public List<U9CReturnData> Data { get; set; } + } + + public class U9CLoginResult : U9CBaseResult + { + public string Data { get; set; } + } + + public class U9CReturnData + { + public string u9c_version { get; set; } + public bool m_isSucess { get; set; } + public string m_otherID { get; set; } + public string m_iD { get; set; } + public string m_code { get; set; } + public string m_errorMsg { get; set; } + public string m_datas { get; set; } + } + + /// <summary> + /// 鍏ュ簱鍗曟帴鍙d紶鍏ュ弬鏁� + /// </summary> + public class RcvRptDocCreateInput + { + public string WorkOrder { get; set; } + public string ItemCode { get; set; } + public string WhCode { get; set; } = "10105"; + public int PkgQty { get; set; } + public int CompleteQty { get; set; } + public int OutputType { get; set; } = 0; + public int StorageType { get; set; } = 4; + public int DocState { get; set; } = 1; + } + + public class RcvRptDocCreateParam + { + public List<CompleteList> CompleteList { get; set; } + } + + public class CompleteList + { + public MOKey MOKey { get; set; } + public Wh Wh { get; set; } + public Item Item { get; set; } + public DescFlexField DescFlexField { get; set; } + public int CompleteQty { get; set; } + public int OutputType { get; set; } = 0; + public int StorageType { get; set; } = 4; + public int DocState { get; set; } = 1; + } + + public class MOKey + { + public string DocNo { get; set; } + } + public class Wh + { + public string Code { get; set; } + } + public class Item + { + public string Code { get; set; } + } + public class DescFlexField + { + public string PrivateDescSeg1 { get; set; } + } +} -- Gitblit v1.9.3