using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; namespace Business.ResourceExamineManagement.Dto { /// /// 工单检查 /// public class OrderCheckDto : EntityDto { /// /// 企业id /// public long tenantId { get; set; } /// /// 工厂id /// public long factoryId { get; set; } /// /// 检查天数(未来几天) /// public int Day { get; set; } } }