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.
17 lines
529 B
C#
17 lines
529 B
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class ReportEntity
|
|
{
|
|
//private string _gid;//主键唯一值
|
|
//private string _name;//报表系统名称
|
|
//private string _description;//报表中文名称或描述信息
|
|
//private string _create_user;//创建人
|
|
//private string _create_time;//创建时间
|
|
//private string _modified_user;//最后一次更新操作人GID
|
|
//private string _modified_time;//最后一次更新操作时间
|
|
}
|
|
}
|