This commit is contained in:
2025-06-03 15:00:18 +08:00
parent 96b6a8b04e
commit 253606b808
7 changed files with 105 additions and 25 deletions

View File

@@ -182,17 +182,17 @@ namespace MyCode.Project.Domain.Config
///让哥的抖音API地址
/// </summary>
public static string DouYinApiUrl = WebConfigUtils.GetAppSettingsInfo("DouYinApiUrl");
/// <summary>
/// 让哥的抖音API Token
/// </summary>
public static string DouYinApiToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2dpbiI6IntcImxvZ2luXCI6XCJhZG1pblwiLFwibmFtZVwiOlwi57O757ufXCIsXCJ1c2VySWRcIjpcIlwifSIsImlzcyI6InN5c3RlbSIsImF1ZCI6IkFueSIsImV4cCI6MzI3MjE1MDc1NiwibmJmIjoxNzE2OTUwNzU2fQ.xPLulTwzyh4ZuYfed_xfFDwYO35WatZcy98rcOwparQ";
/// <summary>
/// 后台系统的API地址
/// </summary>
public static string LxmAdminApiUrl = WebConfigUtils.GetAppSettingsInfo("LxmAdminApiUrl");
/// <summary>
/// 需要推送发货单的收料组织编码
/// </summary>
public static string ReceiveorgCode = WebConfigUtils.GetAppSettingsInfo("ReceiveorgCode");
}

View File

@@ -191,6 +191,24 @@ namespace MyCode.Project.Domain.Message.Response.PurchaseOrder
/// </summary>
public string FBILLTYPEID { get; set; }
/// <summary>
/// Desc:收料组织编码
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgCode { get; set; }
/// <summary>
/// Desc:收料组织名称
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgName { get; set; }
/// <summary>
/// 是否可以勾选发货 1=可以 0=不可以
/// </summary>
public int IfFaHuo { get; set; }
}

View File

@@ -205,5 +205,26 @@ namespace MyCode.Project.Domain.Model
/// </summary>
public string ShouLiaoFBillNo {get;set;}
/// <summary>
/// Desc:收料组织编码
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgCode {get;set;}
/// <summary>
/// Desc:收料组织名称
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgName {get;set;}
/// <summary>
/// Desc:收料组织ID
/// Default:
/// Nullable:True
/// </summary>
public string freceiveorgId {get;set;}
}
}

View File

@@ -212,5 +212,26 @@ namespace MyCode.Project.Domain.Model
/// </summary>
public decimal MSSReceiveQty {get;set;}
/// <summary>
/// Desc:收料组织编码
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgCode {get;set;}
/// <summary>
/// Desc:收料组织名称
/// Default:
/// Nullable:True
/// </summary>
public string ReceiveorgName {get;set;}
/// <summary>
/// Desc:收料组织ID
/// Default:
/// Nullable:True
/// </summary>
public string freceiveorgId {get;set;}
}
}