You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
667 B
34 lines
667 B
2 years ago
|
using Win_in.Sfs.Shared.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Basedata.Domain;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 供应商的时间窗口
|
||
|
/// </summary>
|
||
|
public class SupplierTimeWindow : SfsBaseDataAggregateRootBase
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 供应商代码
|
||
|
/// </summary>
|
||
|
[IgnoreUpdate]
|
||
|
public string SupplierCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 供应商名称
|
||
|
/// </summary>
|
||
|
[IgnoreUpdate]
|
||
|
public string SupplierName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 时间段
|
||
|
/// </summary>
|
||
|
public string TimeSlot { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 当前时间(星期几)
|
||
|
/// </summary>
|
||
|
public string Week { get; set; }
|
||
|
|
||
|
}
|