| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ShwasherSys.CompanyInfo.DeviceInfo.Dto
- {
-
- /// <summary>
- /// 设备维护计划
- /// </summary>
- [AutoMapTo(typeof(DeviceMgPlan))]
- public class DeviceMgPlanUpdateDto: EntityDto<int>
- {
- /// <summary>
- /// 计划编号
- /// </summary>
- [StringLength(DeviceMgPlan.NoMaxLength)]
- public string No { get; set; }
- /// <summary>
- /// 设备名称
- /// </summary>
- [StringLength(DeviceMgPlan.NameMaxLength)]
- public string Name { get; set; }
-
- ///// <summary>
- ///// 设备编码
- ///// </summary>
- //[StringLength(DeviceMgPlan.NoMaxLength)]
- //public string DeviceNo { get; set; }
-
- /// <summary>
- /// 计划类型
- /// </summary>
- public int PlanType { get; set; }
- /// <summary>
- /// 维护内容
- /// </summary>
- [StringLength(DeviceMgPlan.DescMaxLength)]
- public string Description { get; set; }
- /// <summary>
- /// 有效期限
- /// </summary>
- public DateTime ExpireDate { get; set; }
- /// <summary>
- /// 维护周期
- /// </summary>
- public int MaintenanceCycle { get; set; }
- public int NumberOfUsers { get; set; }
- // /// <summary>
- // /// 维护时间
- // /// </summary>
- //public DateTime? MaintenanceDate { get; set; }
- // /// <summary>
- // /// 下一次维护时间
- // /// </summary>
- //public DateTime? NextMaintenanceDate { get; set; }
- }
- }
|