using ButcherFactory.BO.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ButcherFactory.SegmentationPick_
|
|
{
|
|
public partial class SegmentationPickOut : Form, IWithRoleForm
|
|
{
|
|
public SegmentationPickOut()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public List<string> RoleName
|
|
{
|
|
get { return new List<string> { "车间业务.领料退料" }; }
|
|
}
|
|
|
|
public Form Generate()
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
}
|