| 123456789101112131415161718192021222324 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ShwasherSys.CustomerInfo.InvoiceAddress.Dto
- {
- [AutoMapTo(typeof(CustomerInvoiceAddress))]
- public class CustomerInvoiceAddressUpdateDto: EntityDto<int>
- {
- [Required]
- public string CustomerId { get; set; }
- [Required]
- public string InvoiceAddressName { get; set; }
- [Required]
- public string InvoiceAddress { get; set; }
- public string LinkMan { get; set; }
- public string Telephone { get; set; }
- public string Zip { get; set; }
- public string Email { get; set; }
- public string Mobile { get; set; }
- public string Fax { get; set; }
- }
- }
|