ZHJA_HJGL/HJGL_ZH/Model/APIItem/BaseUnitItem.cs

70 lines
746 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace Model.APIItem
{
public class BaseUnitItem
{
public string UnitId { get; set; }
/**
* 单位代码
*/
public string UnitCode { get; set; }
/**
* 单位名称
*/
public string UnitName { get; set; }
/**
* 工程范围
*/
public string ProjectRange { get; set; }
/**
* 法人代表
*/
public string Corporate { get; set; }
/**
* 通讯地址
*/
public string Address { get; set; }
/**
* 电话
*/
public string Telephone { get; set; }
/**
* 传真
*/
public string Fax { get; set; }
/**
* 是否分包商True-是False-否)
*/
public bool? IsSubUnit { get; set; }
public bool? IsMain { get; set; }
}
}