CCN.Modules.Customer.DataAccess.CustomerDA.AddTag C# (CSharp) Метод

AddTag() публичный Метод

添加标签
public AddTag ( CustTagModel model ) : int
model CustTagModel 标签信息
Результат int
        public int AddTag(CustTagModel model)
        {
            const string sql = @"INSERT INTO cust_tag(innerid, tagname, hotcount, isenabled, createdtime, modifiedtime) VALUES (uuid(), @tagname, @hotcount, @isenabled, @createdtime, @modifiedtime);";

            try
            {
                Helper.Execute(sql, model);
                return 1;
            }
            catch (Exception ex)
            {
                return 0;
            }
        }