38 lines
957 B
C#
38 lines
957 B
C#
|
|
using APT.BaseData.Domain.Enums;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using APT.MS.Domain.Entities.PF;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities.FM
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据同步次数限制
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("数据同步次数限制")]
|
|||
|
|
public partial class T_FM_SYNC_LIMIT : MesEntityBase
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 同步日期
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("同步日期")]
|
|||
|
|
public DateTime DATE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 同步次数 限制每天 最多同步 5次 每次递减
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("同步次数")]
|
|||
|
|
public int TIMES { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 同步参数备用字段
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("同步参数")]
|
|||
|
|
public string PARAMETER { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|