| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CallCenterApi.Interface.Models.Dto
- {
- public class OrderDto
- {
- public int id { get; set; }
- public string orderno { get; set; }
- public int? userid { get; set; }
- public string username { get; set; }
- public string express { get; set; }
- public string expressno { get; set; }
- public string acceptname { get; set; }
- public string postcode { get; set; }
- public string telphone { get; set; }
- public string mobile { get; set; }
- public string address { get; set; }
- public string remark { get; set; }
- public decimal orderamount { get; set; }
- public string status { get; set; }
- public DateTime addtime { get; set; }
- }
- }
|