using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; namespace Himp.TaskScheduling { public class CodeConversionDto : EntityDto { /// /// 原始码 /// public string SorcCode { get; set; } /// /// 目标码 /// public string TargetCode { get; set; } /// /// 1 规批码转制样码 /// 2 制样码准化验码 /// 3 化验码转瓶底码 /// public int ConversionType { get; set; } /// /// /// public DateTime ConversionTime { get; set; } /// /// /// public string OperName { get; set; } } }