Commit 4d7a9fde authored by 耿迪迪's avatar 耿迪迪
parents bc8fba4f 077e4763
......@@ -61,7 +61,7 @@ public class TEventReceive extends BaseEntity
/** 指派公司id */
@Excel(name = "指派公司id")
private String enterpriseId;
private Integer enterpriseId;
/** 指派公司名称 */
@Excel(name = "指派公司名称")
......@@ -183,12 +183,12 @@ public class TEventReceive extends BaseEntity
{
return describe;
}
public void setEnterpriseId(String enterpriseId)
public void setEnterpriseId(Integer enterpriseId)
{
this.enterpriseId = enterpriseId;
}
public String getEnterpriseId()
public Integer getEnterpriseId()
{
return enterpriseId;
}
......
......@@ -53,6 +53,9 @@ public class TEventReceiveServiceImpl implements ITEventReceiveService
@Override
public int insertTEventReceive(TEventReceive tEventReceive)
{
if(tEventReceive.getEnterpriseId()!=null){
tEventReceive.setStatus(2);
}
tEventReceive.setCreateTime(DateUtils.getNowDate());
return tEventReceiveMapper.insertTEventReceive(tEventReceive);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment