using System;
using System.Collections.Generic;
using System.Text;
namespace DistributionApi.Model.Dto
{
public class Distri_AddressDto
{
///
/// 自增id
///
public string id { get; set; }
///
/// 地址类型:0发货/1收货
///
public int addresstype { get; set; }
///
/// 项目名称id
///
public string projectid { get; set; }
///
/// 项目名称
///
public string projectname { get; set; }
///
/// 楼宇名称id
///
public string buildingid { get; set; }
///
/// 楼宇名称
///
public string buildingname { get; set; }
///
/// 层数id
///
public string floorid { get; set; }
///
/// 层数
///
public string floorname { get; set; }
/////
///// 科室id
/////
//public string departmentid { get; set; }
///
/// 科室
///
public string departmentname { get; set; }
///
/// 姓名
///
public string fullname { get; set; }
///
/// 电话
///
public string mobile { get; set; }
///
/// 是否默认
///
public bool isdefault { get; set; }
///
/// 备注
///
public string remark { get; set; }
///
/// 添加人工号
///
public string createtby { get; set; }
///
/// 添加时间
///
public DateTime createtime { get; set; }
}
}