Files
ZHJA_HJGL/HJGL_ZH/Model/APIItem/BaseUnitItem.cs
T

70 lines
746 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
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; }
}
}