| 12345678910111213141516 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- namespace ShwasherSys.ProductionOrderInfo.Dto
- {
- [AutoMapTo(typeof(OrderProduction)),AutoMapFrom(typeof(OrderProduction))]
- public class OrderProductionDto: EntityDto<int>
- {
- public int OrderItemId { get; set; }
- public string ProductionOrderNo { get; set; }
- public string Remark { get; set; }
- public DateTime? TimeCreated { get; set; }
- public string CreatorUserId { get; set; }
- }
- }
|