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

26
Models/SelectJoinID.cs Normal file
View File

@@ -0,0 +1,26 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace RB_MES_API.Models
{
/// <summary>
/// 查询类接口定义
/// </summary>
public class SelectJoinID
{
[Key]
[DisplayName("内码")]
public int FID { get; set; }
[DisplayName("接口名称")]
public int FFunctionID { get; set; }
[DisplayName("查询类型")]
[StringLength(80)]
public string FDocType { get; set; } = string.Empty;
[DisplayName("查询参数")]
[StringLength(80)]
public string FOptcode { get; set; } = string.Empty; //每个参数之间用'|'隔开如果需要转义格式A=B|C=D代表第一个参数传入的是A查询的是B第二个参数传入的是C查询的是D。
[ForeignKey("FFunctionID")]
public FunctionList functions { get; set; }
}
}