天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
739 B

using System;
using System.Data;
using QMAPP.Entity;
using QMFrameWork.Data.Attributes;
namespace QMAPP.FJC.Entity.Andon
{
///</summary>
/// 模块编号:
/// 作 用:呼叫记录
/// 作 者:周晓东
/// 编写日期:2017年11月03日
///</summary>
[DBTable(TableName = "T_AD_DivStyle")]
public class DivStyleEntity
{
public string id { get; set; }
public string divLeft { get; set; }
public string divTop { get; set; }
public string fontSize { get; set; }
public string divColor { get; set; }
public string memo { get; set; }
}
}