20 lines
440 B
C#
20 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace SA.Entity.zxdcrm_audit_Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("electronic_visit")]
|
|
public class electronic_visit
|
|
{
|
|
/// <summary>
|
|
/// 软件用户名
|
|
///</summary>
|
|
[SugarColumn(ColumnName="softusername" )]
|
|
public string softusername { get; set; } ="";
|
|
}
|
|
}
|