addresslisttx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace COM.OA.Entity
  5. {
  6.     
  7.     public class addresslisttx
  8.     {
  9.         int al_id;
  10.         public int Al_id
  11.         {
  12.             get { return al_id; }
  13.             set { al_id = value; }
  14.         }
  15.         string u_username;
  16.         public string U_username
  17.         {
  18.             get { return u_username; }
  19.             set { u_username = value; }
  20.         }
  21.         string dept_department;
  22.         public string Dept_department
  23.         {
  24.             get { return dept_department; }
  25.             set { dept_department = value; }
  26.         }
  27.         string al_duty;
  28.         public string Al_duty
  29.         {
  30.             get { return al_duty; }
  31.             set { al_duty = value; }
  32.         }
  33.         string al_mobile;
  34.         public string Al_mobile
  35.         {
  36.             get { return al_mobile; }
  37.             set { al_mobile = value; }
  38.         }
  39.         string al_smallclever;
  40.         public string Al_smallclever
  41.         {
  42.             get { return al_smallclever; }
  43.             set { al_smallclever = value; }
  44.         }
  45.         string al_worktelephone;
  46.         public string Al_worktelephone
  47.         {
  48.             get { return al_worktelephone; }
  49.             set { al_worktelephone = value; }
  50.         }
  51.         string al_address;
  52.         public string Al_address
  53.         {
  54.             get { return al_address; }
  55.             set { al_address = value; }
  56.         }
  57.         
  58.     }
  59. }