Blame view

sys/Hh.Mes.POJO/ApiEntity/SupplierEntity.cs 1 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Text;

namespace Hh.Mes.POJO.ApiEntity
{
    /// <summary>
    /// 供应商信息  MOM_HH_004
    /// </summary>
    public class SupplierEntity
    {
        /// <summary>
        /// 标识Id
        /// </summary>
        public string plmeid { get; set; }
        /// <summary>
        /// 工厂
        /// </summary>
        public string factory { get; set; }
        /// <summary>
        /// 供应商编码
        /// </summary>
        public string supplier_code { get; set; }
        /// <summary>
        /// 供应商名称
        /// </summary>
        public string supplier_name { get; set; }
        /// <summary>
        /// 联系电话
        /// </summary>
        public string tele_phone { get; set; }
        /// <summary>
        /// 地址
        /// </summary>
        public string address { get; set; }
        /// <summary>
        /// 数据传输类型
        /// </summary>
        public string type { get; set; }
    }
}