用户导入

This commit is contained in:
2024-07-12 15:01:12 +08:00
parent 22a576c63f
commit 6c533477a7
4 changed files with 80 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ using SqlSugar;
namespace Tnb.BasicData.Entities
{
/// <summary>
/// 工位资料
/// 第三方接口请求记录
/// </summary>
[SugarTable("third_webapi_record")]
public class ThirdWebapiRecord : BaseEntity<string>
@@ -48,16 +48,16 @@ namespace Tnb.BasicData.Entities
/// 响应时长
/// </summary>
public long response_time { get; set; }
/// <summary>
/// 是否发送 0 否 1是
/// </summary>
public int is_send { get; set; }
public int is_send { get; set; } = 1;
/// <summary>
/// 状态 0 失败 1 成功
/// 状态 0 失败或未发送 1 成功
/// </summary>
public int status { get; set; }
public int status { get; set; } = 0;
/// <summary>
/// 发送成功时类型 自动 手动