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.
25 lines
548 B
25 lines
548 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Data;
|
|
using Stone.Entity;
|
|
using Gm_WMS.DataAccess.DataService;
|
|
using Stone.Common;
|
|
|
|
namespace Stone.WinBiz.BasicData
|
|
{
|
|
public class F_TTZ_Rule : F_Base
|
|
{
|
|
public F_TTZ_Rule()
|
|
{
|
|
this.type = "TTZ_Rule";
|
|
this.name = "基础资料_TTZ解析规则";
|
|
this.entity = new Entity_t_TTZ_Rule();
|
|
this.entityView = new Entity_t_TTZ_Rule();
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|