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.

16 lines
297 B
C#

using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SinglePlateHandle.Enity
{
[Serializable, Table("TB_STDSPEC")]
public class TB_STDSPEC
{
[Persistent("STDSPEC"), DisplayName("标准号")]
public string STDSPEC { get; set; }
}
}