Files
RBMESAPICore/Models/RequestParm.cs
yuyubohh e8494ba988 qqq
2025-09-09 22:41:29 +08:00

28 lines
824 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}