| 123456789101112131415161718192021222324252627282930 |
- using Abp.AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using Abp.Domain.Entities;
- using AutoMapper;
- namespace ShwasherSys.BasicInfo.ExpressInfo.Dto
- {
- [AutoMapTo(typeof(ExpressLogistics))]
- public class ExpressLogisticsCreateDto
- {
- [Required]
- [StringLength(ExpressLogistics.ExpressNameMaxLength)]
- public string ExpressName { get; set; }
- [Required]
- [StringLength(ExpressLogistics.CodeMaxLength)]
- public string Code { get; set; }
- public int Sort { get; set; }
- [IgnoreMap]
- public List<ExpressProviderMapper> ExpressProviderMapper { get; set; }
- }
- }
|