This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

27
Models/RequestParm.cs Normal file
View File

@@ -0,0 +1,27 @@

namespace RB_MES_API.Models
{
/// <summary>
/// RB、k3、Cloud通用的POST请求参数
/// </summary>
public class RequestParm
{
/// <summary>
/// 接口类型
/// </summary>
public string DocType { get; set; } = string.Empty;
/// <summary>
/// RB使用时为实体类名命名空间必须是RB_MES_API.Models
/// K3核算项目基础资料使用时为核算项目的表名t_ICItem 代表物料
/// </summary>
public string ClassName { get; set; } = string.Empty;
/// <summary>
/// 是否携带条码
/// </summary>
public bool IsQRCore { get; set; }= false;
/// <summary>
/// 发送的内容
/// </summary>
public object data { get; set; }
}
}