using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Casic.Birmm.RbFreqStandMeasure.db.model { class Company { // 主键ID private string id; // 客户公司名称 private string name; // 客户联系地址 private string address; // 客户联系人 private string contacts; // 客户联系电话 private string phone; // 备注 private string remarks; // 是否删除 private int valid; // 时间戳,编辑时更新 private string ts; public string Id { get => id; set => id = value; } public string Name { get => name; set => name = value; } public string Address { get => address; set => address = value; } public string Contacts { get => contacts; set => contacts = value; } public string Phone { get => phone; set => phone = value; } public string Remarks { get => remarks; set => remarks = value; } public int Valid { get => valid; set => valid = value; } public string Ts { get => ts; set => ts = value; } } }