You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.1 KiB
C#
90 lines
2.1 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "code_service_disp", DisableSyncStructure = true)]
|
|
public partial class CodeServiceDisp {
|
|
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string ID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
/// <summary>
|
|
/// 所属分公司代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目1
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目10
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE10 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目2
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目3
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目4
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE4 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目5
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE5 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目6
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE6 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目7
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE7 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目8
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE8 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目9
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE9 { get; set; }
|
|
|
|
}
|
|
|
|
}
|