ZHJA_HJGL/HJGL_ZH/Model/APIItem/BaseUnitItem.cs

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; }
}
}