⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x_c_cyclephase.java

📁 大家共享愉快, 共享愉快, 共享愉快, 共享愉快,共享愉快
💻 JAVA
字号:
/** Generated Model - DO NOT CHANGE - Copyright (C) 1999-2005 Jorg Janke */
package org.compiere.model;
import java.util.*;
import java.sql.*;
import java.math.*;
import org.compiere.util.*;
/** Generated Model for C_CyclePhase
 *  @author Jorg Janke (generated) 
 *  @version Release 2.5.3b - 2006-02-09 16:42:59.905 */
public class X_C_CyclePhase extends PO
{
/** Standard Constructor */
public X_C_CyclePhase (Properties ctx, int C_CyclePhase_ID, String trxName)
{
super (ctx, C_CyclePhase_ID, trxName);
/** if (C_CyclePhase_ID == 0)
{
setC_CycleStep_ID (0);
setC_Phase_ID (0);
}
 */
}
/** Load Constructor */
public X_C_CyclePhase (Properties ctx, ResultSet rs, String trxName)
{
super (ctx, rs, trxName);
}
/** AD_Table_ID=433 */
public static final int Table_ID=433;

/** TableName=C_CyclePhase */
public static final String Table_Name="C_CyclePhase";

protected static KeyNamePair Model = new KeyNamePair(433,"C_CyclePhase");

protected BigDecimal accessLevel = new BigDecimal(3);
/** AccessLevel 3 - Client - Org  */
protected int get_AccessLevel()
{
return accessLevel.intValue();
}
/** Load Meta Data */
protected POInfo initPO (Properties ctx)
{
POInfo poi = POInfo.getPOInfo (ctx, Table_ID);
return poi;
}
public String toString()
{
StringBuffer sb = new StringBuffer ("X_C_CyclePhase[").append(get_ID()).append("]");
return sb.toString();
}
/** Set Cycle Step.
The step for this Cycle */
public void setC_CycleStep_ID (int C_CycleStep_ID)
{
if (C_CycleStep_ID < 1) throw new IllegalArgumentException ("C_CycleStep_ID is mandatory.");
set_ValueNoCheck ("C_CycleStep_ID", new Integer(C_CycleStep_ID));
}
/** Get Cycle Step.
The step for this Cycle */
public int getC_CycleStep_ID() 
{
Integer ii = (Integer)get_Value("C_CycleStep_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Standard Phase.
Standard Phase of the Project Type */
public void setC_Phase_ID (int C_Phase_ID)
{
if (C_Phase_ID < 1) throw new IllegalArgumentException ("C_Phase_ID is mandatory.");
set_ValueNoCheck ("C_Phase_ID", new Integer(C_Phase_ID));
}
/** Get Standard Phase.
Standard Phase of the Project Type */
public int getC_Phase_ID() 
{
Integer ii = (Integer)get_Value("C_Phase_ID");
if (ii == null) return 0;
return ii.intValue();
}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -