OrderProductionDto.cs 485 B

12345678910111213141516
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.ProductionOrderInfo.Dto
  5. {
  6. [AutoMapTo(typeof(OrderProduction)),AutoMapFrom(typeof(OrderProduction))]
  7. public class OrderProductionDto: EntityDto<int>
  8. {
  9. public int OrderItemId { get; set; }
  10. public string ProductionOrderNo { get; set; }
  11. public string Remark { get; set; }
  12. public DateTime? TimeCreated { get; set; }
  13. public string CreatorUserId { get; set; }
  14. }
  15. }