| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace Core.StlMes.Client.SaleOrder
- {
- public class CraftOrdDesignDeptEntity
- {
- /// <summary>
- /// 合同行号
- /// </summary>
- private object ordLnPk;
- /// <summary>
- /// 管理部门代码
- /// </summary>
- private object deptCode;
- /// <summary>
- /// 管理部门名称
- /// </summary>
- private object deptDesc;
- /// <summary>
- /// 交付管理科室代码
- /// </summary>
- private object delivyDeptCode;
- /// <summary>
- /// 交付管理科室名称
- /// </summary>
- private object delivyDeptDesc;
- /// <summary>
- /// 工艺管理科室代码
- /// </summary>
- private object techDeptCode;
- /// <summary>
- /// 工艺管理科室名称
- /// </summary>
- private object techDeptDesc;
- public CraftOrdDesignDeptEntity()
- {
- ordLnPk = "";
- deptCode = "";
- deptDesc = "";
- delivyDeptCode = "";
- delivyDeptDesc = "";
- techDeptCode = "";
- techDeptDesc = "";
- }
- /// <summary>
- /// 合同行号
- /// </summary>
- [Description("合同行号")]
- public object OrdLnPk
- {
- get { return ordLnPk; }
- set
- {
- if (value == null)
- {
- ordLnPk = DBNull.Value;
- }
- else
- {
- ordLnPk = value;
- }
- }
- }
- /// <summary>
- /// 管理部门代码
- /// </summary>
- [Description("管理部门代码")]
- public object DeptCode
- {
- get { return deptCode; }
- set
- {
- if (value == null)
- {
- deptCode = DBNull.Value;
- }
- else
- {
- deptCode = value;
- }
- }
- }
- /// <summary>
- /// 管理部门名称
- /// </summary>
- [Description("管理部门名称")]
- public object DeptDesc
- {
- get { return deptDesc; }
- set
- {
- if (value == null)
- {
- deptDesc = DBNull.Value;
- }
- else
- {
- deptDesc = value;
- }
- }
- }
- /// <summary>
- /// 交付管理科室代码
- /// </summary>
- [Description("交付管理科室代码")]
- public object DelivyDeptCode
- {
- get { return delivyDeptCode; }
- set
- {
- if (value == null)
- {
- delivyDeptCode = DBNull.Value;
- }
- else
- {
- delivyDeptCode = value;
- }
- }
- }
- /// <summary>
- /// 交付管理科室名称
- /// </summary>
- [Description("交付管理科室名称")]
- public object DelivyDeptDesc
- {
- get { return delivyDeptDesc; }
- set
- {
- if (value == null)
- {
- delivyDeptDesc = DBNull.Value;
- }
- else
- {
- delivyDeptDesc = value;
- }
- }
- }
- /// <summary>
- /// 工艺管理科室代码
- /// </summary>
- [Description("工艺管理科室代码")]
- public object TechDeptCode
- {
- get { return techDeptCode; }
- set
- {
- if (value == null)
- {
- techDeptCode = DBNull.Value;
- }
- else
- {
- techDeptCode = value;
- }
- }
- }
- /// <summary>
- /// 工艺管理科室名称
- /// </summary>
- [Description("工艺管理科室名称")]
- public object TechDeptDesc
- {
- get { return techDeptDesc; }
- set
- {
- if (value == null)
- {
- techDeptDesc = DBNull.Value;
- }
- else
- {
- techDeptDesc = value;
- }
- }
- }
- }
- }
|