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.
32 lines
731 B
32 lines
731 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using Volo.Abp.Domain.Values;
|
||
|
|
||
|
namespace Win.Sfs.Shared.DomainBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 任务数量时间
|
||
|
/// </summary>
|
||
|
public class TaskQty : ValueObject
|
||
|
{
|
||
|
|
||
|
public string TransNumber { get; set; }
|
||
|
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
|
||
|
protected override IEnumerable<object> GetAtomicValues()
|
||
|
{
|
||
|
yield return TransNumber;
|
||
|
yield return Qty;
|
||
|
yield return CreateTime;
|
||
|
}
|
||
|
}
|
||
|
}
|