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.
31 lines
713 B
31 lines
713 B
2 months ago
|
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_ProdnoRule2 : F_Base
|
||
|
{
|
||
|
public F_ProdnoRule2()
|
||
|
{
|
||
|
this.type = "ProdnoRule2";
|
||
|
this.name = "基础资料_选配区解析规则";
|
||
|
this.entity = new Entity_t_ProdnoRule2();
|
||
|
this.entityView = new Entity_t_ProdnoRule2();
|
||
|
this.strOrder = "[cartype] asc, [sort] asc";
|
||
|
}
|
||
|
|
||
|
public override void Checking(DataRow drData, bool isNew)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|