| 1234567891011121314151617 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ShwasherSys.ProductionOrderInfo.Dto
- {
- [AutoMapTo(typeof(OrderProduction))]
- public class OrderProductionUpdateDto: 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; }
- }
- }
|