This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace DS.Module.Core.Data;
/// <summary>
/// id实体
/// </summary>
public class IdModel
{
/// 主键id
public string? Id { get; set; }
/// 主键ids
public long[]? Ids { get; set; }
/// 业务类型:1、海运出口 2、海运进口
public int? BusinessType { get; set; }
/// 请求值
public object? Value { get; set; }
/// 备注
public string? Remark { get; set; }
}