using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace DistributionApi.Models.Input { /// /// 配送地址(发货/收货) /// public class DistriAddressInput { /// /// 自增id /// public string id { get; set; } /// /// 地址类型:0发货/1收货 /// public int addresstype { get; set; } /// /// 项目名称id /// public string projectid { get; set; } /// /// 楼宇名称id /// public string buildingid { get; set; } /// /// 层数id /// public string floorid { get; set; } /// /// 科室id /// public string departmentid { get; set; } //不用了 /// /// 姓名 /// public string fullname { get; set; } /// /// 电话 /// public string mobile { get; set; } /// /// 是否默认 /// public bool isdefault { get; set; } = false; /// /// 备注 /// public string remark { get; set; } /// /// 排序 /// public int sortnum { get; set; } = 0; } }